2018-12-12 22:32:13 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Settings::BaseController < ApplicationController
|
2020-09-11 20:56:35 +02:00
|
|
|
layout 'admin'
|
|
|
|
|
|
|
|
before_action :authenticate_user!
|
2018-12-12 22:32:13 +01:00
|
|
|
before_action :set_body_classes
|
2019-12-30 04:38:30 +01:00
|
|
|
before_action :set_cache_headers
|
2018-12-12 22:32:13 +01:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'admin'
|
|
|
|
end
|
2019-12-30 04:38:30 +01:00
|
|
|
|
|
|
|
def set_cache_headers
|
|
|
|
response.headers['Cache-Control'] = 'no-cache, no-store, max-age=0, must-revalidate'
|
|
|
|
end
|
2020-09-11 20:56:35 +02:00
|
|
|
|
|
|
|
def require_not_suspended!
|
|
|
|
forbidden if current_account.suspended?
|
|
|
|
end
|
2018-12-12 22:32:13 +01:00
|
|
|
end
|