mastodon/app/controllers/admin/terms_of_service/histories_controller.rb

9 lines
219 B
Ruby
Raw Normal View History

2024-12-09 10:04:46 +00:00
# frozen_string_literal: true
class Admin::TermsOfService::HistoriesController < Admin::BaseController
def show
authorize :terms_of_service, :index?
@terms_of_service = TermsOfService.published.all
end
end