Use bang! to indicate method can explode

This commit is contained in:
Brenda Wallace
2019-10-21 14:43:46 +13:00
parent 498a754eea
commit abd91fa37b
2 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
module Admin
class MembersController < ApplicationController
before_action :admin?
before_action :admin!
load_and_authorize_resource
respond_to :html
responders :flash
@@ -34,7 +34,7 @@ module Admin
params[:q]
end
def admin?
def admin!
authorize! :manage, :all
end
end

View File

@@ -1,6 +1,6 @@
module Admin
class RolesController < ApplicationController
before_action :admin?
before_action :admin!
load_and_authorize_resource
respond_to :html
responders :flash
@@ -36,7 +36,7 @@ module Admin
private
def admin?
def admin!
authorize! :manage, :all
end