(frontend) add access request on doc share modal

Add the access request to the document
share modal, allowing admin to see and manage
access requests directly from the modal interface.
This commit is contained in:
Anthony LC
2025-06-24 17:42:41 +02:00
committed by Manuel Raynaud
parent 411d52c73b
commit 2360a832af
7 changed files with 403 additions and 18 deletions

View File

@@ -1,5 +1,7 @@
import { Page, expect } from '@playwright/test';
export const BROWSERS = ['chromium', 'webkit', 'firefox'];
export const CONFIG = {
AI_FEATURE_ENABLED: true,
CRISP_WEBSITE_ID: null,
@@ -328,4 +330,6 @@ export const mockedAccesses = async (page: Page, json?: object) => {
export const expectLoginPage = async (page: Page) =>
await expect(
page.getByRole('heading', { name: 'Collaborative writing' }),
).toBeVisible();
).toBeVisible({
timeout: 10000,
});