mirror of
https://github.com/diaspora/diaspora.git
synced 2026-01-11 08:07:59 -05:00
9 lines
181 B
Ruby
9 lines
181 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class AdminController < ApplicationController
|
|
before_action :authenticate_user!
|
|
before_action :redirect_unless_admin
|
|
end
|
|
end
|