2017-11-21 08:13:37 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Settings::BaseController < ApplicationController
|
|
|
|
before_action :set_pack
|
2020-09-11 21:56:35 +03:00
|
|
|
layout 'admin'
|
|
|
|
|
|
|
|
before_action :authenticate_user!
|
2018-10-26 21:36:49 +03:00
|
|
|
before_action :set_body_classes
|
2019-12-30 05:38:30 +02:00
|
|
|
before_action :set_cache_headers
|
2017-11-21 08:13:37 +02:00
|
|
|
|
2019-07-23 11:30:24 +03:00
|
|
|
private
|
|
|
|
|
2017-11-21 08:13:37 +02:00
|
|
|
def set_pack
|
|
|
|
use_pack 'settings'
|
|
|
|
end
|
2018-10-26 21:36:49 +03:00
|
|
|
|
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'admin'
|
|
|
|
end
|
2019-12-30 05:38:30 +02:00
|
|
|
|
|
|
|
def set_cache_headers
|
2022-11-16 05:56:30 +02:00
|
|
|
response.headers['Cache-Control'] = 'private, no-store'
|
2019-12-30 05:38:30 +02:00
|
|
|
end
|
2020-09-11 21:56:35 +03:00
|
|
|
|
|
|
|
def require_not_suspended!
|
|
|
|
forbidden if current_account.suspended?
|
|
|
|
end
|
2017-11-21 08:13:37 +02:00
|
|
|
end
|