mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 05:43:44 +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
|