This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Improve onboarding experience for new installation #187
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov Report
@@ Coverage Diff @@
## master #187 +/- ##
==========================================
+ Coverage 94.31% 94.55% +0.24%
==========================================
Files 60 61 +1
Lines 1477 1599 +122
==========================================
+ Hits 1393 1512 +119
- Misses 84 87 +3
Continue to review full report at Codecov.
|
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes #163.
Closes #88. Moved some items to #186
When a user installs the application into a Slack workspace, the onboarding process is kicked off. A welcome message is sent, the user is asked to create a channel, and invite the bot. The bot, once in the channel, asks what time the summary will be posted. The user enters a time and the bot is activated.
Currently, it's a manual process to convert the configuration settings given by the user into a CRON job, but that's okay. We are currently in the beta stage. This will be fixed later.
The onboarding flow is implemented via a state machine. We have 4 states:
installed
,user_welcomed
,config_requested
, andactive
. We are using transitions to run the state machine.Resources