diff --git a/lib/tracker_api/resources/story.rb b/lib/tracker_api/resources/story.rb index 683a9bf..5125946 100644 --- a/lib/tracker_api/resources/story.rb +++ b/lib/tracker_api/resources/story.rb @@ -6,6 +6,8 @@ class Story attribute :client attribute :accepted_at, DateTime + attribute :after_id, Integer + attribute :before_id, Integer attribute :comment_ids, [Integer] attribute :comments, [Comment] attribute :created_at, DateTime @@ -41,6 +43,8 @@ class UpdateRepresenter < Representable::Decorator property :follower_ids, if: ->(options) { !options[:input].blank? } property :name + property :after_id + property :before_id property :description property :story_type property :current_state