[refs #616] fixed searching collaboratots to assignment

This commit is contained in:
Alexander Machehin 2012-08-20 23:37:22 +06:00
parent e637191a61
commit 1142f9ee8c
1 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# -*- encoding : utf-8 -*- # -*- encoding : utf-8 -*-
class Projects::IssuesController < Projects::BaseController class Projects::IssuesController < Projects::BaseController
NON_RESTFUL_ACTION = [:create_label, :update_label, :destroy_label, :search_collaborators] NON_RESTFUL_ACTION = [:create_label, :update_label, :destroy_label]
before_filter :authenticate_user! before_filter :authenticate_user!
skip_before_filter :authenticate_user!, :only => [:index, :show] if APP_CONFIG['anonymous_access'] skip_before_filter :authenticate_user!, :only => [:index, :show] if APP_CONFIG['anonymous_access']
load_resource :project load_resource :project
@ -34,7 +34,6 @@ class Projects::IssuesController < Projects::BaseController
end end
def new def new
@issue = @project.issues.new
end end
def create def create