-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add user's UUID to the response of relevant login API handlers
remp/dn-mofa#538
- Loading branch information
Showing
7 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -301,6 +301,7 @@ Response: | |
"status": "ok", | ||
"user": { | ||
"id": 1, | ||
"uuid": "35e6b53c-340c-4dc3-ad36-f81b2b1f00a8", | ||
"email": "[email protected]", | ||
"confirmed_at": "2021-01-01T10:00:00+01:00", // RFC3339 date or NULL; user confirmation date | ||
"first_name": "Test", | ||
|
@@ -359,6 +360,7 @@ Success response: | |
"status": "ok", | ||
"user": { | ||
"id": 9, | ||
"uuid": "35e6b53c-340c-4dc3-ad36-f81b2b1f00a8", | ||
"email": "[email protected]", | ||
"confirmed_at": "2021-01-01T10:00:00+01:00", // RFC3339 date or NULL; user confirmation date | ||
"first_name": "Test", | ||
|
@@ -605,6 +607,7 @@ Success response: | |
"status": "ok", | ||
"user": { | ||
"id": 101, | ||
"uuid": "35e6b53c-340c-4dc3-ad36-f81b2b1f00a8", | ||
"email": "[email protected]", | ||
"confirmed_at": "2021-01-01T10:00:00+01:00", // RFC3339 date or NULL; user confirmation date | ||
"first_name": null, | ||
|
@@ -1300,6 +1303,7 @@ Success response: | |
"status": "ok", | ||
"user": { | ||
"id": 9, | ||
"uuid": "35e6b53c-340c-4dc3-ad36-f81b2b1f00a8", | ||
"email": "[email protected]", | ||
"confirmed_at": "2021-01-01T10:00:00+01:00", // RFC3339 date or NULL; user confirmation date | ||
"public_name": "[email protected]", | ||
|
@@ -1541,6 +1545,7 @@ Success response: | |
"status": "ok", | ||
"user": { | ||
"id": 101, | ||
"uuid": "35e6b53c-340c-4dc3-ad36-f81b2b1f00a8", | ||
"email": "[email protected]", | ||
"created_at": "2021-01-01T10:00:00+01:00", // RFC3339 date; user creation date | ||
"confirmed_at": "2021-01-01T10:00:00+01:00", // RFC3339 date or NULL; user confirmation date | ||
|
@@ -1584,6 +1589,7 @@ Success response: | |
"status": "ok", | ||
"user": { | ||
"id": 101, | ||
"uuid": "35e6b53c-340c-4dc3-ad36-f81b2b1f00a8", | ||
"email": "[email protected]", | ||
"created_at": "2021-01-01T10:00:00+01:00", // RFC3339 date; user creation date | ||
"confirmed_at": "2021-01-01T10:00:00+01:00", // RFC3339 date or NULL; user confirmation date | ||
|
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
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
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
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
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
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