mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 07:31:12 +01:00
17 lines
290 B
Ruby
17 lines
290 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class BaseController < ApplicationController
|
|
include Authorization
|
|
include AccountableConcern
|
|
|
|
layout 'admin'
|
|
|
|
before_action :require_staff!
|
|
before_action :set_pack
|
|
|
|
def set_pack
|
|
use_pack 'admin'
|
|
end
|
|
end
|
|
end
|