Add authorisation check for ManagementController
This commit is contained in:
parent
10eec9c080
commit
414f1a3916
|
@ -1,5 +1,13 @@
|
|||
module Management
|
||||
class ManagementController < ::ApplicationController
|
||||
before_action :authenticate_user!, :authorize_user!
|
||||
|
||||
layout 'management'
|
||||
|
||||
private
|
||||
|
||||
def authorize_user!
|
||||
head :forbidden unless current_user.admin?
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue