Files
astuto/app/controllers/site_settings_controller.rb

30 lines
431 B
Ruby
Raw Normal View History

2022-05-01 18:00:38 +02:00
class SiteSettingsController < ApplicationController
include ApplicationHelper
before_action :authenticate_admin,
2024-01-23 18:50:42 +01:00
only: [:general, :authentication, :boards, :post_statuses, :roadmap, :appearance]
2023-01-18 21:11:27 +01:00
before_action :authenticate_moderator,
only: [:users]
2022-05-01 18:00:38 +02:00
def general
end
2024-01-23 18:50:42 +01:00
def authentication
end
def boards
end
2022-05-01 18:00:38 +02:00
def post_statuses
end
def roadmap
end
2024-01-23 18:50:42 +01:00
def appearance
end
2024-01-23 18:50:42 +01:00
def users
end
2022-05-01 18:00:38 +02:00
end