camp the fire?

This commit is contained in:
24c02 2026-02-05 14:39:03 -05:00
parent 0d63b22e98
commit 5f005cb425
2 changed files with 20 additions and 1 deletions

View file

@ -12,7 +12,9 @@ module OnboardingScenarios
def slack_user_type = :multi_channel_guest
def slack_channels = chans(:campfire_flagship, :campfire_flagship_bulletin, :campfire_flagship_help)
def slack_channels = chans(:campfire_flagship, :campfire_flagship_bulletin, :campfire_flagship_help, :welcome_to_hack_club)
def slack_onboarding_flow = :internal_tutorial
def next_action = :home
@ -21,5 +23,12 @@ module OnboardingScenarios
def card_attributes = { wide_logo: true }
def dark_mode_background_path = "images/campfire/campfire.png"
def dialogue_flow
{
intro: { template: "tutorial/campfire/intro", next: :welcome },
welcome: { template: "tutorial/03_welcome", next: nil }
}
end
end
end

View file

@ -0,0 +1,10 @@
image "https://cdn.hackclub.com/019c297b-5d42-7256-a5e5-7d8f9f7adcd5/welcome.gif", "Welcome to Hack Club!"
section <<~EOFD, markdown: true
Right now you can only see a few channels.
To access other channels, you must read and agree to our <https://hackclub.com/conduct|Code of Conduct>.
EOFD
actions [
button("I'll follow the CoC!", "tutorial_agree", style: "primary")
]