Sha256: 632cccc4bddaea2d0326e607f4bddc6a799216fc99c1e0a5bc1b7431a997a30a

Contents?: true

Size: 694 Bytes

Versions: 17

Compression:

Stored size: 694 Bytes

Contents

# -*- encoding : utf-8 -*-

class AccountEvents < Card::CoreMigration
  def up
    aa = Card.fetch "#{ Card[ :signup ].name }+#{ Card[ :type ].name}+#{ Card[:accountable ].name}", :new=>{}
    aa.content = "1"
    aa.save!
    
    role_right = "#{ Card[ :roles ].name }+#{ Card[ :right ].name }"
    
    r_options = Card.fetch "#{ role_right }+#{ Card[ :options ].name }", :new=>{}
    r_options.type_id = Card::SearchTypeID
    r_options.content = %({"type":"role", "not":{"codename":["in","anyone","anyone_signed_in"]}})
    r_options.save!
    
    r_input = Card.fetch "#{ role_right }+#{ Card[ :input ].name }", :new=>{}
    r_input.content = '[[checkbox]]'
    r_input.save!
  end

end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
card-1.16.6 db/migrate_core_cards/20130927191728_account_events.rb
card-1.16.5 db/migrate_core_cards/20130927191728_account_events.rb
card-1.16.4 db/migrate_core_cards/20130927191728_account_events.rb
card-1.16.3 db/migrate_core_cards/20130927191728_account_events.rb
card-1.16.2 db/migrate_core_cards/20130927191728_account_events.rb
card-1.16.1 db/migrate_core_cards/20130927191728_account_events.rb
card-1.16.0 db/migrate_core_cards/20130927191728_account_events.rb
card-1.15.7 db/migrate_core_cards/20130927191728_account_events.rb
card-1.15.6 db/migrate_core_cards/20130927191728_account_events.rb
card-1.15.5 db/migrate_core_cards/20130927191728_account_events.rb
card-1.15.4 db/migrate_core_cards/20130927191728_account_events.rb
card-1.15.3 db/migrate_core_cards/20130927191728_account_events.rb
card-1.15.2 db/migrate_core_cards/20130927191728_account_events.rb
card-1.15.1 db/migrate_core_cards/20130927191728_account_events.rb
card-1.15.0 db/migrate_core_cards/20130927191728_account_events.rb
card-1.15.pre2 db/migrate_core_cards/20130927191728_account_events.rb
card-1.15.pre db/migrate_core_cards/20130927191728_account_events.rb