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
Don’t change these roles.
-
#venues ⇒ Object
Don’t change these venues.
Instance Method Details
#categories ⇒ Object
29 30 31 |
# File 'app/models/concerns/effective_mentorships_registration.rb', line 29 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
33 34 35 |
# File 'app/models/concerns/effective_mentorships_registration.rb', line 33 def locations ['Canada', 'United States'] end |
#mentorship_roles ⇒ Object
Don’t change these roles
20 21 22 |
# File 'app/models/concerns/effective_mentorships_registration.rb', line 20 def mentorship_roles [:mentor, :mentee] end |
#venues ⇒ Object
Don’t change these venues
25 26 27 |
# File 'app/models/concerns/effective_mentorships_registration.rb', line 25 def venues ['Virtual', 'In-person', 'Either'] end |