-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Activate/Deactivate User By ID (#95)
- Loading branch information
Showing
12 changed files
with
321 additions
and
4 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
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
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 |
---|---|---|
|
@@ -19,6 +19,7 @@ | |
{"name": "abc", "phone": "123-456-7890", "email": "[email protected]"}, | ||
{"name": "Jane Doe", "phone": "111-222-3333", "email": "[email protected]"}, | ||
], | ||
"active": True, | ||
} | ||
|
||
MOCK_INFO1_CAMEL = { | ||
|
@@ -42,6 +43,7 @@ | |
{"name": "abc", "phone": "123-456-7890", "email": "[email protected]"}, | ||
{"name": "Jane Doe", "phone": "111-222-3333", "email": "[email protected]"}, | ||
], | ||
"active": True, | ||
} | ||
|
||
MOCK_INFO2_SNAKE = { | ||
|
@@ -66,6 +68,7 @@ | |
{"name": "def", "phone": "098-765-4321", "email": "[email protected]"}, | ||
{"name": "John Doe", "phone": "444-555-6666", "email": "[email protected]"}, | ||
], | ||
"active": True, | ||
} | ||
|
||
MOCK_INFO2_CAMEL = { | ||
|
@@ -90,6 +93,7 @@ | |
{"name": "def", "phone": "098-765-4321", "email": "[email protected]"}, | ||
{"name": "John Doe", "phone": "444-555-6666", "email": "[email protected]"}, | ||
], | ||
"active": True, | ||
} | ||
|
||
MOCK_INFO3_SNAKE = { | ||
|
@@ -108,6 +112,7 @@ | |
{"name": "ghi", "phone": "135-792-4680", "email": "[email protected]"}, | ||
{"name": "Jack Doe", "phone": "777-888-999", "email": "[email protected]"}, | ||
], | ||
"active": False, | ||
} | ||
|
||
MOCK_INFO3_CAMEL = { | ||
|
@@ -126,6 +131,7 @@ | |
{"name": "ghi", "phone": "135-792-4680", "email": "[email protected]"}, | ||
{"name": "Jack Doe", "phone": "777-888-999", "email": "[email protected]"}, | ||
], | ||
"active": False, | ||
} | ||
|
||
MOCK_USER1_SNAKE = { | ||
|
Oops, something went wrong.