feat: add ability to disable API key expiration email

This commit is contained in:
Elias Schneider
2025-04-20 18:41:03 +02:00
parent fe1c4b18cd
commit 9122e75101
8 changed files with 28 additions and 8 deletions

View File

@@ -34,6 +34,7 @@ test('Update email configuration', async ({ page }) => {
await page.getByLabel('Email Login Notification').click();
await page.getByLabel('Email Login Code Requested by User').click();
await page.getByLabel('Email Login Code from Admin').click();
await page.getByLabel('API Key Expiration').click();
await page.getByRole('button', { name: 'Save' }).nth(1).click();
@@ -49,6 +50,7 @@ test('Update email configuration', async ({ page }) => {
await expect(page.getByLabel('Email Login Notification')).toBeChecked();
await expect(page.getByLabel('Email Login Code Requested by User')).toBeChecked();
await expect(page.getByLabel('Email Login Code from Admin')).toBeChecked();
await expect(page.getByLabel('API Key Expiration')).toBeChecked();
});
test('Update LDAP configuration', async ({ page }) => {