Module: EffectiveMentorshipsRegistration::ClassMethods
- Defined in:
- app/models/concerns/effective_mentorships_registration.rb
Instance Method Summary collapse
- #categories ⇒ Object
- #effective_mentorships_registration? ⇒ Boolean
- #locations ⇒ Object
- #mentorship_roles ⇒ Object
- #venues ⇒ Object
Instance Method Details
#categories ⇒ Object
23 24 25 |
# File 'app/models/concerns/effective_mentorships_registration.rb', line 23 def categories ['General', 'Industry Specific'] end |
#effective_mentorships_registration? ⇒ Boolean
17 |
# File 'app/models/concerns/effective_mentorships_registration.rb', line 17 def effective_mentorships_registration?; true; end |
#locations ⇒ Object
27 28 29 |
# File 'app/models/concerns/effective_mentorships_registration.rb', line 27 def locations ['Canada', 'United States'] end |
#mentorship_roles ⇒ Object
19 20 21 |
# File 'app/models/concerns/effective_mentorships_registration.rb', line 19 def mentorship_roles [:mentor, :mentee] end |
#venues ⇒ Object
31 32 33 |
# File 'app/models/concerns/effective_mentorships_registration.rb', line 31 def venues ['Virtual', 'In-person', 'Either'] end |