Files
astuto/app/controllers/site_settings_controller.rb

34 lines
474 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-09-06 20:27:15 +02:00
def invitations
@invitations = Invitation.all.order(updated_at: :desc)
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