Skip to content
This repository has been archived by the owner on May 16, 2021. It is now read-only.

Commit

Permalink
fix: add tags for adding new user
Browse files Browse the repository at this point in the history
  • Loading branch information
mainawycliffe committed Jan 12, 2020
1 parent 2698be7 commit fe16f91
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions firebase/auth/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ import (
)

type NewUser struct {
UID string
Email string
EmailVerified bool
PhoneNumber string
Password string
DisplayName string
Disabled bool
PhotoURL string
UID string `json:"uid" yaml:"uid"`
Email string `json:"email" yaml:"email"`
EmailVerified bool `json:"email_verified" yaml:"email_verified"`
PhoneNumber string `json:"phone" yaml:"phone"`
Password string `json:"password" yaml:"password"`
DisplayName string `json:"name" yaml:"name" `
Disabled bool `json:"disabled" yaml:"disabled"`
PhotoURL string `json:"photo_url" yaml:"photo_url"`
}

// NewFirebaseUser create a new firebase user using Email/Password Auth Provider
Expand Down

0 comments on commit fe16f91

Please sign in to comment.