12 lines
156 B
Ruby
12 lines
156 B
Ruby
class Management::BaseController < ActionController::Base
|
|
layout 'admin'
|
|
|
|
before_action :verify_manager
|
|
|
|
private
|
|
|
|
def verify_manager
|
|
end
|
|
|
|
end
|