Files
glb_adm 01acfa3b40
Type checking / changes (push) Has been cancelled
Type checking / test (push) Has been cancelled
Type checking / typescript-summary (push) Has been cancelled
Node tests / changes (push) Has been cancelled
Node tests / test (push) Has been cancelled
Node tests / test-summary (push) Has been cancelled
UPSTREAM BASELINE: nextcloud/spreed v22.0.12 (без изменений)
Источник: https://github.com/nextcloud/spreed/archive/refs/tags/v22.0.12.tar.gz
С этого коммита ветка официального Nextcloud Talk отрезана (решение владельца 2026-07-06).
Все дальнейшие изменения — только наши; версии релизов: 22.0.12-f7.N.
2026-07-06 14:07:50 +00:00

25 lines
1.3 KiB
Gherkin

Feature: conversation/invite-email
Background:
Given user "participant1" exists
Scenario: Resend email invites
Given user "participant1" creates room "room" (v4)
| roomType | 3 |
| roomName | room |
When user "participant1" adds email "test@example.tld" to room "room" with 200 (v4)
# Adding the same email again should not error to help the Calendar integration
# Ref https://github.com/nextcloud/calendar/pull/5380
When user "participant1" adds email "test@example.tld" to room "room" with 200 (v4)
Then user "participant1" sees the following attendees in room "room" with 200 (v4)
| participantType | inCall | actorType | actorId | invitedActorId |
| 4 | 0 | emails | SHA256(test@example.tld) | test@example.tld |
| 1 | 0 | users | participant1 | ABSENT |
# Reinvite all emails
When user "participant1" resends invite for room "room" with 200 (v4)
# Reinvite only one
When user "participant1" resends invite for room "room" with 200 (v4)
| attendeeId | test@example.tld |
# Reinvite failure
When user "participant1" resends invite for room "room" with 404 (v4)
| attendeeId | not-found@example.tld |