##// END OF EJS Templates
Tagging 1.0.2...
Tagging 1.0.2 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/tags/1.0.2@4213 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r663:603e11d7a5aa
r4099:b5cfe790446f 1.0.2
Show More
003_issue_add_note.rb
12 lines | 417 B | text/x-ruby | RubyLexer
/ db / migrate / 003_issue_add_note.rb
Jean-Philippe Lang
issues/add_note added...
r34 class IssueAddNote < ActiveRecord::Migration
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 # model removed
class Permission < ActiveRecord::Base; end
Jean-Philippe Lang
issues/add_note added...
r34 def self.up
Permission.create :controller => "issues", :action => "add_note", :description => "label_add_note", :sort => 1057, :mail_option => 1, :mail_enabled => 0
end
def self.down
Permission.find(:first, :conditions => ["controller=? and action=?", 'issues', 'add_note']).destroy
end
end