Sha256: 8d27f2d1dbddadfdced8133e37d148ecf74bb9b560f55071fa24f619da6eabf8

Contents?: true

Size: 1.07 KB

Versions: 2

Compression:

Stored size: 1.07 KB

Contents

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

class AccountRequestsToSignups < Cardio::Migration::Transform
  def up
    newname = "Sign up"
    newname = "*signup" if Card.exist? newname

    # get old codename and name out of the way
    old_signup = Card[:signup]
    old_signup.name = "#{newname} - old"
    old_signup.codename = nil
    old_signup.save!

    # rename Account Request to "Sign up"
    new_signup = Card[:account_request]
    new_signup.name = newname
    new_signup.codename = :signup
    new_signup.save!

    # move old "*signup+*thanks" to "Sign up+*type+*thanks"
    if (signup_thanks = [old_signup, :thanks].card)
      signup_thanks.name = [new_signup, :type, :thanks].cardname
      signup_thanks.save!
    end

    # get rid of old signup card unless there is other data there (most likely +*subject and +*message)
    old_signup.delete! unless Card.search(return: :id, left_id: old_signup.id).first

    # turn captcha off by default on signup
    captcha_rule = Card.fetch %i[signup type captcha].cardname, new: {}
    captcha_rule.content = "0"
    captcha_rule.save!
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
card-1.108.1 mod/core/data/transform/20140317035504_account_requests_to_signups.rb
card-1.108.0 mod/core/data/transform/20140317035504_account_requests_to_signups.rb