Skip to content

Commit

Permalink
feat: add onboarding status
Browse files Browse the repository at this point in the history
  • Loading branch information
mlabouardy committed Sep 25, 2023
1 parent 114d545 commit 01968b2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion handlers/accounts_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ import (

func (handler *ApiHandler) IsOnboardedHandler(c *gin.Context) {
output := struct {
Onboarded bool `json:"onboarded"`
Onboarded bool `json:"onboarded"`
Status string `json:"status"`
}{
Onboarded: false,
Status: "COMPLETE",
}

if handler.db != nil {
Expand Down

0 comments on commit 01968b2

Please sign in to comment.