mirror of
https://github.com/funamitech/mastodon
synced 2024-12-02 16:58:53 +09:00
17 lines
259 B
Ruby
17 lines
259 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class BaseController < ApplicationController
|
|
include Authorization
|
|
|
|
layout 'admin'
|
|
|
|
before_action :require_staff!
|
|
before_action :set_pack
|
|
|
|
def set_pack
|
|
use_pack 'admin'
|
|
end
|
|
end
|
|
end
|