##// END OF EJS Templates
Added per-project tracker selection. Trackers can be selected on project settings....
Added per-project tracker selection. Trackers can be selected on project settings. git-svn-id: http://redmine.rubyforge.org/svn/trunk@920 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r663:603e11d7a5aa
r907:8d91afc33e3b
Show More
025_add_search_permission.rb
12 lines | 412 B | text/x-ruby | RubyLexer
/ db / migrate / 025_add_search_permission.rb
class AddSearchPermission < ActiveRecord::Migration
# model removed
class Permission < ActiveRecord::Base; end
def self.up
Permission.create :controller => "projects", :action => "search", :description => "label_search", :sort => 130, :is_public => true, :mail_option => 0, :mail_enabled => 0
end
def self.down
Permission.find_by_controller_and_action('projects', 'search').destroy
end
end