Sha256: d236a7d0c1a8582ae50b5648eee0113e9a17442fd5576f5c37cb3deca61c1fc7

Contents?: true

Size: 865 Bytes

Versions: 2

Compression:

Stored size: 865 Bytes

Contents

module Freefeed
  class Timeline < ResourceKitling::Resource
    actions do
      action :bestof do
        verb :get
        version :v2
        path '/bestof'
      end
      action :home do
        verb :get
        version :v2
        path '/timelines/home'
      end
      action :discussions do
        verb :get
        version :v2
        path '/timelines/filter/discussions'
      end
      action :directs do
        verb :get
        version :v2
        path '/timelines/filter/directs'
      end
      action :posts do
        verb :get
        version :v2
        path '/timelines/:username'
      end
      action :likes do
        verb :get
        version :v2
        path '/timelines/:username/likes'
      end
      action :comments do
        verb :get
        version :v2
        path '/timelines/:username/comments'
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
freefeed-client-1.1.0 lib/freefeed/resources/timeline.rb
freefeed-client-0.1.0 lib/freefeed/resources/timeline.rb