mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
21 lines
341 B
Ruby
21 lines
341 B
Ruby
class SiteSettingsController < ApplicationController
|
|
include ApplicationHelper
|
|
|
|
before_action :authenticate_admin, only: [:general, :boards, :post_statuses, :roadmap]
|
|
before_action :authenticate_power_user, only: [:users]
|
|
|
|
def general
|
|
end
|
|
|
|
def boards
|
|
end
|
|
|
|
def post_statuses
|
|
end
|
|
|
|
def roadmap
|
|
end
|
|
|
|
def users
|
|
end
|
|
end |