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