7 lines
135 B
Ruby
7 lines
135 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Admin::StaffController < ApplicationController
|
||
|
requires_login
|
||
|
before_action :ensure_staff
|
||
|
end
|