This repository has been archived on 2019-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/api/mastodon/rest.rb

14 lines
262 B
Ruby

module Mastodon
class Rest < Grape::API
version 'v1', using: :path
format :json
resource :statuses do
desc 'Return a public timeline'
get :all do
present Status.all, with: Mastodon::Entities::Status
end
end
end
end