Sha256: 0da6a9298fe0493c1857410b0a85df9975c3c55f0468530cc4f4093d34ffadb9

Contents?: true

Size: 1.15 KB

Versions: 34

Compression:

Stored size: 1.15 KB

Contents

class SetDocAndFilesNotifications < ActiveRecord::Migration
  # model removed
  class Permission < ActiveRecord::Base; end

  def self.up
    Permission.where(:controller => "projects", :action => "add_file").each {|p| p.update_attribute(:mail_option, true)}
    Permission.where(:controller => "projects", :action => "add_document").each {|p| p.update_attribute(:mail_option, true)}
    Permission.where(:controller => "documents", :action => "add_attachment").each {|p| p.update_attribute(:mail_option, true)}
    Permission.where(:controller => "issues", :action => "add_attachment").each {|p| p.update_attribute(:mail_option, true)}
  end

  def self.down
    Permission.where(:controller => "projects", :action => "add_file").each {|p| p.update_attribute(:mail_option, false)}
    Permission.where(:controller => "projects", :action => "add_document").each {|p| p.update_attribute(:mail_option, false)}
    Permission.where(:controller => "documents", :action => "add_attachment").each {|p| p.update_attribute(:mail_option, false)}
    Permission.where(:controller => "issues", :action => "add_attachment").each {|p| p.update_attribute(:mail_option, false)}
  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
redmine_extensions-0.0.39 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.0.38 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.0.37 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.1.11 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.1.10 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.0.36 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.0.34 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.1.09 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.1.07 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.1.06 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.1.05 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.1.04 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.1.03 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.0.33 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.1.02 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.1.01 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.0.29 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.0.28 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.0.27 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb
redmine_extensions-0.0.24 spec/redmine/db/migrate/018_set_doc_and_files_notifications.rb