feat: flag for onboarding tour completion (#1499)
* feat: flag for onboarding tour completion * dev: boolean field * dev: user tour completed endpoint * dev: onboarding step json
This commit is contained in:
parent
a1b09fcbc6
commit
275942a246
4 changed files with 51 additions and 8 deletions
|
|
@ -22,6 +22,7 @@ from plane.api.views import (
|
|||
# User
|
||||
UserEndpoint,
|
||||
UpdateUserOnBoardedEndpoint,
|
||||
UpdateUserTourCompletedEndpoint,
|
||||
UserActivityEndpoint,
|
||||
## End User
|
||||
# Workspaces
|
||||
|
|
@ -202,7 +203,12 @@ urlpatterns = [
|
|||
path(
|
||||
"users/me/onboard/",
|
||||
UpdateUserOnBoardedEndpoint.as_view(),
|
||||
name="change-password",
|
||||
name="user-onboard",
|
||||
),
|
||||
path(
|
||||
"users/me/tour-completed/",
|
||||
UpdateUserTourCompletedEndpoint.as_view(),
|
||||
name="user-tour",
|
||||
),
|
||||
path("users/activities/", UserActivityEndpoint.as_view(), name="user-activities"),
|
||||
# user workspaces
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue