From 7b53d818131578edbdd42cd8d47ee88835b07ffd Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Tue, 8 Apr 2025 18:54:06 +0200 Subject: [PATCH] backend: Update room deletion description to specify that the deletion date must be at least one hour in the future --- backend/openapi/components/schemas/meet-room-options.yaml | 2 +- backend/openapi/components/schemas/meet-room.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/openapi/components/schemas/meet-room-options.yaml b/backend/openapi/components/schemas/meet-room-options.yaml index 52ff218..dcf98d1 100644 --- a/backend/openapi/components/schemas/meet-room-options.yaml +++ b/backend/openapi/components/schemas/meet-room-options.yaml @@ -4,7 +4,7 @@ properties: type: [number, 'null'] example: 1620000000000 description: > - The date and time when the room will be deleted, represented in milliseconds since the Unix epoch. + The date and time when the room will be deleted (must be one hour in the future or more) represented in milliseconds since the Unix epoch. After this date, the room will be automatically deleted and no new participants can join. diff --git a/backend/openapi/components/schemas/meet-room.yaml b/backend/openapi/components/schemas/meet-room.yaml index 30a7944..6fa1d09 100644 --- a/backend/openapi/components/schemas/meet-room.yaml +++ b/backend/openapi/components/schemas/meet-room.yaml @@ -19,7 +19,7 @@ properties: type: [number, 'null'] example: 1620000800000 description: > - The date and time when the room will be deleted, represented in milliseconds since the Unix epoch. + The date and time when the room will be deleted (must be one hour in the future or more) represented in milliseconds since the Unix epoch. After this date, the room will be automatically deleted and no new participants can join.