Skip to content

Commit

Permalink
adds users.json file
Browse files Browse the repository at this point in the history
  • Loading branch information
HeetShah committed Nov 20, 2023
1 parent ecf6f6c commit 9c0cb4c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,3 @@ backend/typescript/serviceAccount.json
package-lock.json
.gitignore
package.json
backend/typescript/graphql/sampleData/users.json
24 changes: 24 additions & 0 deletions backend/typescript/graphql/sampleData/users.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[
{
"uid": "12345",
"email": "test@uwblueprint.org",
"emailVerified": true,
"displayName": "First and last",
"photoURL": "some link",
"disabled": false,
"metadata": {
"lastSignInTime": "last sign in time",
"creationTime": "creation time"
},
"tokensValidAfterTime": "tokens valid after time",
"providerData": [
{
"uid": "12345",
"displayName": "First and last",
"email": "test@uwblueprint.org",
"photoURL": "some link",
"providerId": "google.com"
}
]
}
]

0 comments on commit 9c0cb4c

Please sign in to comment.