2017-04-11 05:27:03 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class BaseController < ApplicationController
|
2017-11-12 06:23:33 +11:00
|
|
|
include Authorization
|
2017-11-24 12:05:53 +11:00
|
|
|
include AccountableConcern
|
2017-11-12 06:23:33 +11:00
|
|
|
|
2018-10-25 09:10:01 +11:00
|
|
|
layout 'admin'
|
|
|
|
|
2017-11-12 06:23:33 +11:00
|
|
|
before_action :require_staff!
|
2018-10-25 09:10:01 +11:00
|
|
|
before_action :set_body_classes
|
2017-04-11 05:27:03 +10:00
|
|
|
|
2018-10-25 09:10:01 +11:00
|
|
|
private
|
|
|
|
|
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'admin'
|
|
|
|
end
|
2017-04-11 05:27:03 +10:00
|
|
|
end
|
|
|
|
end
|