mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-25 12:03:48 -05:00
14 lines
262 B
Ruby
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
|