2014-09-17 12:43:17 +03:00
|
|
|
module Management
|
|
|
|
class ManagementController < ::ApplicationController
|
2014-09-17 14:30:50 +03:00
|
|
|
before_action :authenticate_user!, :authorize_user!
|
|
|
|
|
2014-09-17 12:43:17 +03:00
|
|
|
layout 'management'
|
2014-09-17 14:30:50 +03:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def authorize_user!
|
|
|
|
head :forbidden unless current_user.admin?
|
|
|
|
end
|
2014-09-17 12:43:17 +03:00
|
|
|
end
|
|
|
|
end
|