##// END OF EJS Templates
Adds assertions on response status and body....
Adds assertions on response status and body. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9976 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r663:603e11d7a5aa
r9793:54d55a360a21
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