Commit df016465cdce1bab78536e7f8faa63f5eace718e
1 parent
dd833d28
Exists in
master
and in
4 other branches
ability for sortable
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/controllers/issues_controller.rb
... | ... | @@ -5,7 +5,7 @@ class IssuesController < ApplicationController |
5 | 5 | # Authorize |
6 | 6 | before_filter :add_project_abilities |
7 | 7 | before_filter :authorize_read_issue! |
8 | - before_filter :authorize_write_issue!, :only => [:new, :create, :close, :edit, :update] | |
8 | + before_filter :authorize_write_issue!, :only => [:new, :create, :close, :edit, :update, :sort] | |
9 | 9 | before_filter :authorize_admin_issue!, :only => [:destroy] |
10 | 10 | |
11 | 11 | respond_to :js | ... | ... |