2017-11-21 06:13:37 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Settings::BaseController < ApplicationController
|
|
|
|
before_action :set_pack
|
2020-09-11 18:56:35 +00:00
|
|
|
layout 'admin'
|
|
|
|
|
|
|
|
before_action :authenticate_user!
|
2018-10-26 18:36:49 +00:00
|
|
|
before_action :set_body_classes
|
2019-12-30 03:38:30 +00:00
|
|
|
before_action :set_cache_headers
|
2017-11-21 06:13:37 +00:00
|
|
|
|
2019-07-23 08:30:24 +00:00
|
|
|
private
|
|
|
|
|
2017-11-21 06:13:37 +00:00
|
|
|
def set_pack
|
|
|
|
use_pack 'settings'
|
|
|
|
end
|
2018-10-26 18:36:49 +00:00
|
|
|
|
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'admin'
|
|
|
|
end
|
2019-12-30 03:38:30 +00:00
|
|
|
|
|
|
|
def set_cache_headers
|
2023-04-19 14:07:29 +00:00
|
|
|
response.cache_control.replace(private: true, no_store: true)
|
2019-12-30 03:38:30 +00:00
|
|
|
end
|
2020-09-11 18:56:35 +00:00
|
|
|
|
|
|
|
def require_not_suspended!
|
|
|
|
forbidden if current_account.suspended?
|
|
|
|
end
|
2017-11-21 06:13:37 +00:00
|
|
|
end
|