Files
astuto/app/controllers/site_settings_controller.rb

30 lines
390 B
Ruby
Raw Normal View History

2022-05-01 18:00:38 +02:00
class SiteSettingsController < ApplicationController
include ApplicationHelper
2024-07-12 20:38:46 +02:00
before_action :authenticate_admin
before_action :set_page_title
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
private
def set_page_title
@page_title = t('header.menu.site_settings')
end
2022-05-01 18:00:38 +02:00
end