2018-12-13 08:32:13 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Settings::BaseController < ApplicationController
|
2020-09-12 04:56:35 +10:00
|
|
|
layout 'admin'
|
|
|
|
|
|
|
|
before_action :authenticate_user!
|
2018-12-13 08:32:13 +11:00
|
|
|
before_action :set_body_classes
|
2019-12-30 14:38:30 +11:00
|
|
|
before_action :set_cache_headers
|
2018-12-13 08:32:13 +11:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'admin'
|
|
|
|
end
|
2019-12-30 14:38:30 +11:00
|
|
|
|
|
|
|
def set_cache_headers
|
2022-11-16 14:56:30 +11:00
|
|
|
response.headers['Cache-Control'] = 'private, no-store'
|
2019-12-30 14:38:30 +11:00
|
|
|
end
|
2020-09-12 04:56:35 +10:00
|
|
|
|
|
|
|
def require_not_suspended!
|
|
|
|
forbidden if current_account.suspended?
|
|
|
|
end
|
2018-12-13 08:32:13 +11:00
|
|
|
end
|