mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:25:53 +08:00
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
|