mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2025-01-11 16:52:20 +01: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
|