From 97441310c632e6d483a07ad53502d399d997ff0a Mon Sep 17 00:00:00 2001 From: stve Date: Sun, 30 Aug 2015 22:50:03 -0400 Subject: [PATCH] update attribute types for user model --- lib/instapaper/user.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/instapaper/user.rb b/lib/instapaper/user.rb index 8f1ed67..fde035e 100644 --- a/lib/instapaper/user.rb +++ b/lib/instapaper/user.rb @@ -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