mastodon/app/controllers/admin/terms_of_service_controller.rb
2025-03-05 09:01:33 +00:00

8 lines
211 B
Ruby

# frozen_string_literal: true
class Admin::TermsOfServiceController < Admin::BaseController
def index
authorize :terms_of_service, :index?
@terms_of_service = TermsOfService.published.first
end
end