-
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.
- Loading branch information
Showing
8 changed files
with
47 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,6 +61,7 @@ public function testCreateJoinOrganization(): void | |
"email": "[email protected]", | ||
"emailVerified": true, | ||
"imageUrl": "https://example.com/test.png", | ||
"memberCount": 1, | ||
"disabled": true | ||
}, | ||
"user": { | ||
|
@@ -129,6 +130,7 @@ public function testCreateSignup(): void | |
"email": "[email protected]", | ||
"emailVerified": true, | ||
"imageUrl": "https://example.com/test.png", | ||
"memberCount": 1, | ||
"disabled": true | ||
}, | ||
"user": { | ||
|
@@ -197,6 +199,7 @@ public function testGet(): void | |
"email": "[email protected]", | ||
"emailVerified": true, | ||
"imageUrl": "https://example.com/test.png", | ||
"memberCount": 1, | ||
"disabled": true | ||
}, | ||
"user": { | ||
|
@@ -265,6 +268,7 @@ public function testApprove(): void | |
"email": "[email protected]", | ||
"emailVerified": true, | ||
"imageUrl": "https://example.com/test.png", | ||
"memberCount": 1, | ||
"disabled": true | ||
}, | ||
"user": { | ||
|
@@ -333,6 +337,7 @@ public function testConsume(): void | |
"email": "[email protected]", | ||
"emailVerified": true, | ||
"imageUrl": "https://example.com/test.png", | ||
"memberCount": 1, | ||
"disabled": true | ||
}, | ||
"user": { | ||
|
@@ -401,6 +406,7 @@ public function testCancel(): void | |
"email": "[email protected]", | ||
"emailVerified": true, | ||
"imageUrl": "https://example.com/test.png", | ||
"memberCount": 1, | ||
"disabled": true | ||
}, | ||
"user": { | ||
|
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 |
---|---|---|
|
@@ -29,6 +29,7 @@ public function testList(): void | |
"email": "[email protected]", | ||
"emailVerified": true, | ||
"imageUrl": "https://example.com/test.png", | ||
"memberCount": 1, | ||
"disabled": true | ||
} | ||
], | ||
|
@@ -57,6 +58,7 @@ public function testCreate(): void | |
"email": "[email protected]", | ||
"emailVerified": true, | ||
"imageUrl": "https://example.com/test.png", | ||
"memberCount": 1, | ||
"disabled": true | ||
} | ||
EOD; | ||
|
@@ -81,6 +83,7 @@ public function testGet(): void | |
"email": "[email protected]", | ||
"emailVerified": true, | ||
"imageUrl": "https://example.com/test.png", | ||
"memberCount": 1, | ||
"disabled": true | ||
} | ||
EOD; | ||
|
@@ -105,6 +108,7 @@ public function testUpdate(): void | |
"email": "[email protected]", | ||
"emailVerified": true, | ||
"imageUrl": "https://example.com/test.png", | ||
"memberCount": 1, | ||
"disabled": true | ||
} | ||
EOD; | ||
|