2017-04-10 15:27:03 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class BaseController < ApplicationController
|
2017-11-11 14:23:33 -05:00
|
|
|
include Authorization
|
2017-11-23 20:05:53 -05:00
|
|
|
include AccountableConcern
|
2017-11-11 14:23:33 -05:00
|
|
|
|
2017-11-21 01:13:37 -05:00
|
|
|
layout 'admin'
|
|
|
|
|
2017-11-11 14:23:33 -05:00
|
|
|
before_action :require_staff!
|
2017-11-21 01:13:37 -05:00
|
|
|
before_action :set_pack
|
2018-10-24 18:10:01 -04:00
|
|
|
before_action :set_body_classes
|
2017-04-10 15:27:03 -04:00
|
|
|
|
2018-10-24 18:10:01 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'admin'
|
|
|
|
end
|
2017-04-10 15:27:03 -04:00
|
|
|
|
2017-11-21 01:13:37 -05:00
|
|
|
def set_pack
|
|
|
|
use_pack 'admin'
|
|
|
|
end
|
2017-04-10 15:27:03 -04:00
|
|
|
end
|
|
|
|
end
|