Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added app/frontend/images/clubs/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions app/models/onboarding_scenarios/clubs.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module OnboardingScenarios
class Clubs < Base
def self.slug = "clubs"

def title = "Ready to start leading your Club?"

def form_fields = [ :first_name, :last_name, :primary_email, :birthday, :country ]

def slack_user_type = :full_member

def slack_channels = chans(:leaders, :identity_help, :help, :welcome_to_hack_club, :slack_guide) + promotion_channels
Comment thread
whatbeato marked this conversation as resolved.
Outdated

def promotion_channels = chans(:library, :lounge, :welcome, :happenings, :community, :announcements)

def first_step = :welcome

def logo_path = "images/clubs/icon.png"
end
end