feat: add user token management

This commit is contained in:
Sonny
2025-08-21 16:39:02 +02:00
parent 376e9e32c3
commit d00b6b9edd
17 changed files with 517 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
import { useTranslation } from 'react-i18next';
import { ApiTokens } from '~/components/common/api_tokens/api_tokens';
import {
FloatingTab,
FloatingTabs,
@@ -14,6 +15,11 @@ function UserSettingsShow() {
value: 'preferences',
content: <UserPreferences />,
},
{
label: t('api-tokens.title'),
value: 'api-tokens',
content: <ApiTokens />,
},
];
return <FloatingTabs tabs={tabs} />;
}