Files
astuto/app/controllers/site_settings_controller.rb
2022-06-12 15:22:06 +02:00

17 lines
212 B
Ruby

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