-
Notifications
You must be signed in to change notification settings - Fork 437
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(calls): Add email to exported participant list and list everyone …
…that had joined the call Signed-off-by: Joas Schilling <[email protected]>
- Loading branch information
1 parent
5b1c701
commit 610bb57
Showing
4 changed files
with
45 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,12 +95,18 @@ Feature: callapi/public | |
And user "guest" joins call "room" with 200 (v4) | ||
Then user "participant1" sees 2 peers in call "room" with 200 (v4) | ||
And user "guest" sees 2 peers in call "room" with 200 (v4) | ||
And invoking occ with "user:setting participant1 settings email [email protected]" | ||
And user "participant2" downloads call participants from "room" as "csv" with 403 (v4) | ||
And user "participant1" downloads call participants from "room" as "csv" with 200 (v4) | ||
| name | type | identifier | | ||
| participant1-displayname | users | participant1 | | ||
| | guests | guest1 | | ||
| name | email | type | identifier | | ||
| participant1-displayname | participant1@example.tld | users | participant1 | | ||
| | | guests | guest1 | | ||
Then user "guest" leaves call "room" with 200 (v4) | ||
And user "participant1" downloads call participants from "room" as "csv" with 200 (v4) | ||
| name | email | type | identifier | | ||
| participant1-displayname | participant1@example.tld | users | participant1 | | ||
| | | guests | guest1 | | ||
And invoking occ with "user:setting participant1 settings email --delete" | ||
Then user "participant1" sees 1 peers in call "room" with 200 (v4) | ||
And user "guest" sees 1 peers in call "room" with 200 (v4) | ||
Then user "guest" leaves room "room" with 200 (v4) | ||
|