Files
astuto/app/controllers/site_settings_controller.rb
2022-05-08 16:36:35 +02:00

14 lines
191 B
Ruby

class SiteSettingsController < ApplicationController
include ApplicationHelper
before_action :authenticate_admin
def general
end
def boards
end
def post_statuses
end
end