diff --git a/packages/console/src/pages/TenantSettings/TenantBasicSettings/SigningKeys/index.tsx b/packages/console/src/pages/TenantSettings/TenantBasicSettings/SigningKeys/index.tsx index c925c8c29..5ce753655 100644 --- a/packages/console/src/pages/TenantSettings/TenantBasicSettings/SigningKeys/index.tsx +++ b/packages/console/src/pages/TenantSettings/TenantBasicSettings/SigningKeys/index.tsx @@ -5,6 +5,7 @@ import { } from '@logto/schemas'; import { condArray } from '@silverhand/essentials'; import { useMemo, useState } from 'react'; +import { toast } from 'react-hot-toast'; import { Trans, useTranslation } from 'react-i18next'; import useSWR from 'swr'; @@ -170,6 +171,7 @@ function SigningKeys() { }) .json(); void mutate(keys); + toast.success(t('messages.rotate_key_success')); } finally { setIsRotating(false); } @@ -210,6 +212,7 @@ function SigningKeys() { try { await api.delete(`api/configs/oidc/${keyType}/${deletingKeyId}`); void mutate(data?.filter((key) => key.id !== deletingKeyId)); + toast.success(t('messages.delete_key_success')); } finally { setDeletingKeyId(undefined); } diff --git a/packages/phrases/src/locales/de/translation/admin-console/tenants.ts b/packages/phrases/src/locales/de/translation/admin-console/tenants.ts index bce369646..0725de2d4 100644 --- a/packages/phrases/src/locales/de/translation/admin-console/tenants.ts +++ b/packages/phrases/src/locales/de/translation/admin-console/tenants.ts @@ -120,6 +120,12 @@ const tenants = { delete_cookie_key: 'Are you sure you want to delete the OIDC cookie key? Older sign-in sessions with cookies signed with this cookie key will no longer be valid. A re-authentication is required for these users.', }, + messages: { + /** UNTRANSLATED */ + rotate_key_success: 'Signing keys rotated successfully.', + /** UNTRANSLATED */ + delete_key_success: 'Key deleted successfully.', + }, }, }; diff --git a/packages/phrases/src/locales/en/translation/admin-console/tenants.ts b/packages/phrases/src/locales/en/translation/admin-console/tenants.ts index e5c20a64d..359c09da4 100644 --- a/packages/phrases/src/locales/en/translation/admin-console/tenants.ts +++ b/packages/phrases/src/locales/en/translation/admin-console/tenants.ts @@ -99,6 +99,10 @@ const tenants = { delete_cookie_key: 'Are you sure you want to delete the OIDC cookie key? Older sign-in sessions with cookies signed with this cookie key will no longer be valid. A re-authentication is required for these users.', }, + messages: { + rotate_key_success: 'Signing keys rotated successfully.', + delete_key_success: 'Key deleted successfully.', + }, }, }; diff --git a/packages/phrases/src/locales/es/translation/admin-console/tenants.ts b/packages/phrases/src/locales/es/translation/admin-console/tenants.ts index 760c864ba..9b96e122f 100644 --- a/packages/phrases/src/locales/es/translation/admin-console/tenants.ts +++ b/packages/phrases/src/locales/es/translation/admin-console/tenants.ts @@ -120,6 +120,12 @@ const tenants = { delete_cookie_key: 'Are you sure you want to delete the OIDC cookie key? Older sign-in sessions with cookies signed with this cookie key will no longer be valid. A re-authentication is required for these users.', }, + messages: { + /** UNTRANSLATED */ + rotate_key_success: 'Signing keys rotated successfully.', + /** UNTRANSLATED */ + delete_key_success: 'Key deleted successfully.', + }, }, }; diff --git a/packages/phrases/src/locales/fr/translation/admin-console/tenants.ts b/packages/phrases/src/locales/fr/translation/admin-console/tenants.ts index 7d7577cd5..5de6538ed 100644 --- a/packages/phrases/src/locales/fr/translation/admin-console/tenants.ts +++ b/packages/phrases/src/locales/fr/translation/admin-console/tenants.ts @@ -120,6 +120,12 @@ const tenants = { delete_cookie_key: 'Are you sure you want to delete the OIDC cookie key? Older sign-in sessions with cookies signed with this cookie key will no longer be valid. A re-authentication is required for these users.', }, + messages: { + /** UNTRANSLATED */ + rotate_key_success: 'Signing keys rotated successfully.', + /** UNTRANSLATED */ + delete_key_success: 'Key deleted successfully.', + }, }, }; diff --git a/packages/phrases/src/locales/it/translation/admin-console/tenants.ts b/packages/phrases/src/locales/it/translation/admin-console/tenants.ts index ce7766440..f0623841b 100644 --- a/packages/phrases/src/locales/it/translation/admin-console/tenants.ts +++ b/packages/phrases/src/locales/it/translation/admin-console/tenants.ts @@ -121,6 +121,12 @@ const tenants = { delete_cookie_key: 'Are you sure you want to delete the OIDC cookie key? Older sign-in sessions with cookies signed with this cookie key will no longer be valid. A re-authentication is required for these users.', }, + messages: { + /** UNTRANSLATED */ + rotate_key_success: 'Signing keys rotated successfully.', + /** UNTRANSLATED */ + delete_key_success: 'Key deleted successfully.', + }, }, }; diff --git a/packages/phrases/src/locales/ja/translation/admin-console/tenants.ts b/packages/phrases/src/locales/ja/translation/admin-console/tenants.ts index a62435048..ee60a9503 100644 --- a/packages/phrases/src/locales/ja/translation/admin-console/tenants.ts +++ b/packages/phrases/src/locales/ja/translation/admin-console/tenants.ts @@ -120,6 +120,12 @@ const tenants = { delete_cookie_key: 'Are you sure you want to delete the OIDC cookie key? Older sign-in sessions with cookies signed with this cookie key will no longer be valid. A re-authentication is required for these users.', }, + messages: { + /** UNTRANSLATED */ + rotate_key_success: 'Signing keys rotated successfully.', + /** UNTRANSLATED */ + delete_key_success: 'Key deleted successfully.', + }, }, }; diff --git a/packages/phrases/src/locales/ko/translation/admin-console/tenants.ts b/packages/phrases/src/locales/ko/translation/admin-console/tenants.ts index 6eb0a8eb9..8ecc45d57 100644 --- a/packages/phrases/src/locales/ko/translation/admin-console/tenants.ts +++ b/packages/phrases/src/locales/ko/translation/admin-console/tenants.ts @@ -120,6 +120,12 @@ const tenants = { delete_cookie_key: 'Are you sure you want to delete the OIDC cookie key? Older sign-in sessions with cookies signed with this cookie key will no longer be valid. A re-authentication is required for these users.', }, + messages: { + /** UNTRANSLATED */ + rotate_key_success: 'Signing keys rotated successfully.', + /** UNTRANSLATED */ + delete_key_success: 'Key deleted successfully.', + }, }, }; diff --git a/packages/phrases/src/locales/pl-pl/translation/admin-console/tenants.ts b/packages/phrases/src/locales/pl-pl/translation/admin-console/tenants.ts index 0f9825654..9b8f4fe19 100644 --- a/packages/phrases/src/locales/pl-pl/translation/admin-console/tenants.ts +++ b/packages/phrases/src/locales/pl-pl/translation/admin-console/tenants.ts @@ -120,6 +120,12 @@ const tenants = { delete_cookie_key: 'Are you sure you want to delete the OIDC cookie key? Older sign-in sessions with cookies signed with this cookie key will no longer be valid. A re-authentication is required for these users.', }, + messages: { + /** UNTRANSLATED */ + rotate_key_success: 'Signing keys rotated successfully.', + /** UNTRANSLATED */ + delete_key_success: 'Key deleted successfully.', + }, }, }; diff --git a/packages/phrases/src/locales/pt-br/translation/admin-console/tenants.ts b/packages/phrases/src/locales/pt-br/translation/admin-console/tenants.ts index 7fca019e5..cd340a355 100644 --- a/packages/phrases/src/locales/pt-br/translation/admin-console/tenants.ts +++ b/packages/phrases/src/locales/pt-br/translation/admin-console/tenants.ts @@ -120,6 +120,12 @@ const tenants = { delete_cookie_key: 'Are you sure you want to delete the OIDC cookie key? Older sign-in sessions with cookies signed with this cookie key will no longer be valid. A re-authentication is required for these users.', }, + messages: { + /** UNTRANSLATED */ + rotate_key_success: 'Signing keys rotated successfully.', + /** UNTRANSLATED */ + delete_key_success: 'Key deleted successfully.', + }, }, }; diff --git a/packages/phrases/src/locales/pt-pt/translation/admin-console/tenants.ts b/packages/phrases/src/locales/pt-pt/translation/admin-console/tenants.ts index 17b0af7d4..e5c72beb1 100644 --- a/packages/phrases/src/locales/pt-pt/translation/admin-console/tenants.ts +++ b/packages/phrases/src/locales/pt-pt/translation/admin-console/tenants.ts @@ -120,6 +120,12 @@ const tenants = { delete_cookie_key: 'Are you sure you want to delete the OIDC cookie key? Older sign-in sessions with cookies signed with this cookie key will no longer be valid. A re-authentication is required for these users.', }, + messages: { + /** UNTRANSLATED */ + rotate_key_success: 'Signing keys rotated successfully.', + /** UNTRANSLATED */ + delete_key_success: 'Key deleted successfully.', + }, }, }; diff --git a/packages/phrases/src/locales/ru/translation/admin-console/tenants.ts b/packages/phrases/src/locales/ru/translation/admin-console/tenants.ts index a4a401997..c6859b5c1 100644 --- a/packages/phrases/src/locales/ru/translation/admin-console/tenants.ts +++ b/packages/phrases/src/locales/ru/translation/admin-console/tenants.ts @@ -120,6 +120,12 @@ const tenants = { delete_cookie_key: 'Are you sure you want to delete the OIDC cookie key? Older sign-in sessions with cookies signed with this cookie key will no longer be valid. A re-authentication is required for these users.', }, + messages: { + /** UNTRANSLATED */ + rotate_key_success: 'Signing keys rotated successfully.', + /** UNTRANSLATED */ + delete_key_success: 'Key deleted successfully.', + }, }, }; diff --git a/packages/phrases/src/locales/tr-tr/translation/admin-console/tenants.ts b/packages/phrases/src/locales/tr-tr/translation/admin-console/tenants.ts index 20fd8f35b..a6e2660e3 100644 --- a/packages/phrases/src/locales/tr-tr/translation/admin-console/tenants.ts +++ b/packages/phrases/src/locales/tr-tr/translation/admin-console/tenants.ts @@ -120,6 +120,12 @@ const tenants = { delete_cookie_key: 'Are you sure you want to delete the OIDC cookie key? Older sign-in sessions with cookies signed with this cookie key will no longer be valid. A re-authentication is required for these users.', }, + messages: { + /** UNTRANSLATED */ + rotate_key_success: 'Signing keys rotated successfully.', + /** UNTRANSLATED */ + delete_key_success: 'Key deleted successfully.', + }, }, }; diff --git a/packages/phrases/src/locales/zh-cn/translation/admin-console/tenants.ts b/packages/phrases/src/locales/zh-cn/translation/admin-console/tenants.ts index 3bc5ebfc4..aee6d8f3e 100644 --- a/packages/phrases/src/locales/zh-cn/translation/admin-console/tenants.ts +++ b/packages/phrases/src/locales/zh-cn/translation/admin-console/tenants.ts @@ -117,6 +117,12 @@ const tenants = { delete_cookie_key: 'Are you sure you want to delete the OIDC cookie key? Older sign-in sessions with cookies signed with this cookie key will no longer be valid. A re-authentication is required for these users.', }, + messages: { + /** UNTRANSLATED */ + rotate_key_success: 'Signing keys rotated successfully.', + /** UNTRANSLATED */ + delete_key_success: 'Key deleted successfully.', + }, }, }; diff --git a/packages/phrases/src/locales/zh-hk/translation/admin-console/tenants.ts b/packages/phrases/src/locales/zh-hk/translation/admin-console/tenants.ts index e28ec0a55..b54378715 100644 --- a/packages/phrases/src/locales/zh-hk/translation/admin-console/tenants.ts +++ b/packages/phrases/src/locales/zh-hk/translation/admin-console/tenants.ts @@ -117,6 +117,12 @@ const tenants = { delete_cookie_key: 'Are you sure you want to delete the OIDC cookie key? Older sign-in sessions with cookies signed with this cookie key will no longer be valid. A re-authentication is required for these users.', }, + messages: { + /** UNTRANSLATED */ + rotate_key_success: 'Signing keys rotated successfully.', + /** UNTRANSLATED */ + delete_key_success: 'Key deleted successfully.', + }, }, }; diff --git a/packages/phrases/src/locales/zh-tw/translation/admin-console/tenants.ts b/packages/phrases/src/locales/zh-tw/translation/admin-console/tenants.ts index 044ecb406..e55e63c7f 100644 --- a/packages/phrases/src/locales/zh-tw/translation/admin-console/tenants.ts +++ b/packages/phrases/src/locales/zh-tw/translation/admin-console/tenants.ts @@ -117,6 +117,12 @@ const tenants = { delete_cookie_key: 'Are you sure you want to delete the OIDC cookie key? Older sign-in sessions with cookies signed with this cookie key will no longer be valid. A re-authentication is required for these users.', }, + messages: { + /** UNTRANSLATED */ + rotate_key_success: 'Signing keys rotated successfully.', + /** UNTRANSLATED */ + delete_key_success: 'Key deleted successfully.', + }, }, };