Remove redundant access check for Issues#destroy
We were already calling `authorize_admin_issue!` in a before filter with the same permission checks, so this deleted check wasn't actually doing anything.
This commit is contained in:
parent
a0893b4d58
commit
8cfb197dfc
1 changed files with 0 additions and 2 deletions
|
@ -87,8 +87,6 @@ class IssuesController < ApplicationController
|
|||
end
|
||||
|
||||
def destroy
|
||||
return access_denied! unless can?(current_user, :admin_issue, @issue)
|
||||
|
||||
@issue.destroy
|
||||
|
||||
respond_to do |format|
|
||||
|
|
Loading…
Reference in a new issue