Module: EffectiveMembershipsApplicant::ClassMethods

Defined in:
app/models/concerns/effective_memberships_applicant.rb

Instance Method Summary collapse

Instance Method Details

#categoriesObject

Apply to Join - Anyone can do this Apply to Reclassify - Must have an existing membership and category Apply for Reinstatement - Must have a removed membership. Membership history.



28
29
30
# File 'app/models/concerns/effective_memberships_applicant.rb', line 28

def categories
  ['Apply to Join', 'Apply to Reclassify', 'Apply for Reinstatement']
end

#effective_memberships_applicant?Boolean

Returns:

  • (Boolean)


17
# File 'app/models/concerns/effective_memberships_applicant.rb', line 17

def effective_memberships_applicant?; true; end

#required_wizard_stepsObject

For effective_category_applicant_wizard_steps_collection



20
21
22
# File 'app/models/concerns/effective_memberships_applicant.rb', line 20

def required_wizard_steps
  [:start, :select, :summary, :billing, :checkout, :submitted]
end

#transcripts_statusesObject



32
33
34
# File 'app/models/concerns/effective_memberships_applicant.rb', line 32

def transcripts_statuses
  []
end