gab-social/app/controllers/manifests_controller.rb

10 lines
173 B
Ruby
Raw Normal View History

2019-07-02 03:10:25 -04:00
# frozen_string_literal: true
class ManifestsController < EmptyController
2019-07-02 03:10:25 -04:00
def show
render json: {} #InstancePresenter.new, serializer: ManifestSerializer
2019-07-02 03:10:25 -04:00
end
2020-11-15 12:48:32 -06:00
2019-07-02 03:10:25 -04:00
end