1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-19 17:13:48 -05:00

10 lines
219 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class ManifestsController < ApplicationController
skip_before_action :store_current_location
def show
render json: InstancePresenter.new, serializer: ManifestSerializer
end
end