##// END OF EJS Templates
Allow key authentication when deleting issues (with tests) #6447...
Allow key authentication when deleting issues (with tests) #6447 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4367 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r663:603e11d7a5aa
r4253:c55e060bab62
Show More
056_add_repositories_changes_permission.rb
12 lines | 443 B | text/x-ruby | RubyLexer
/ db / migrate / 056_add_repositories_changes_permission.rb
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556 class AddRepositoriesChangesPermission < ActiveRecord::Migration
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 # model removed
class Permission < ActiveRecord::Base; end
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556 def self.up
Permission.create :controller => 'repositories', :action => 'changes', :description => 'label_change_plural', :sort => 1475, :is_public => true, :mail_option => 0, :mail_enabled => 0
end
def self.down
Permission.find_by_controller_and_action('repositories', 'changes').destroy
end
end