gab-social/app/controllers/manifests_controller.rb

10 lines
169 B
Ruby
Raw Normal View History

2019-07-02 08:10:25 +01:00
# frozen_string_literal: true
class ManifestsController < EmptyController
2019-07-02 08:10:25 +01:00
def show
2020-12-22 17:49:40 +00:00
render json: InstancePresenter.new, serializer: ManifestSerializer
2019-07-02 08:10:25 +01:00
end
2020-11-15 18:48:32 +00:00
2019-07-02 08:10:25 +01:00
end