7208edbd37
Packs are now loaded from views, just like upstream, and are identified by their filenames. The definition of `theme.yml` has changed as such: - `pack_directory` is now required - `pack` is now unused - `signed_in_preload` has been introduced
23 lines
447 B
Ruby
23 lines
447 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Disputes::BaseController < ApplicationController
|
|
include Authorization
|
|
|
|
layout 'admin'
|
|
|
|
skip_before_action :require_functional!
|
|
|
|
before_action :set_body_classes
|
|
before_action :authenticate_user!
|
|
before_action :set_cache_headers
|
|
|
|
private
|
|
|
|
def set_body_classes
|
|
@body_classes = 'admin'
|
|
end
|
|
|
|
def set_cache_headers
|
|
response.cache_control.replace(private: true, no_store: true)
|
|
end
|
|
end
|