update attribute types for user model

This commit is contained in:
stve 2015-08-30 22:50:03 -04:00
parent d64dfa1085
commit 97441310c6

View file

@ -5,10 +5,10 @@ module Instapaper
include Virtus.value_object
values do
attribute :type, String
attribute :user_id, String
attribute :username, String
attribute :subscription_is_active, String
attribute :user_id, Integer
attribute :type, String
attribute :subscription_is_active, Axiom::Types::Boolean
end
end
end