minor fix

This commit is contained in:
Alexey Nayden 2011-04-11 12:34:34 +04:00
parent 62d0985fcb
commit cbab2a7671
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
class BuildListsController < ApplicationController
before_filter :authenticate_user!
before_filter :authenticate_user!, :except => [:status_build, :pre_build, :post_build]
before_filter :find_platform, :only => [:index, :filter]
before_filter :find_repository, :only => [:index, :filter]
before_filter :find_project, :only => [:index, :filter]
@ -87,4 +87,4 @@ class BuildListsController < ApplicationController
@build_list = BuildList.find_by_bs_id!(params[:id])
end
end
end