Files
astuto/app/controllers/site_settings_controller.rb

27 lines
395 B
Ruby
Raw Normal View History

2022-05-01 18:00:38 +02:00
class SiteSettingsController < ApplicationController
include ApplicationHelper
before_action :authenticate_admin,
only: [:general, :boards, :post_statuses, :roadmap, :authentication]
before_action :authenticate_power_user,
only: [:users]
2022-05-01 18:00:38 +02:00
def general
end
def boards
end
2022-05-01 18:00:38 +02:00
def post_statuses
end
def roadmap
end
def users
end
def authentication
end
2022-05-01 18:00:38 +02:00
end