feat(web): introduce API tokens in admin dashboard

This commit is contained in:
Ali BARIN
2025-04-15 16:01:34 +00:00
parent 2c1888e1b3
commit 15e8f1d5a8
20 changed files with 500 additions and 10 deletions

View File

@@ -88,6 +88,7 @@ export const ADMIN_APP_CONNECTIONS_PATTERN = `${ADMIN_SETTINGS}/apps/:appKey/con
export const ADMIN_TEMPLATES = `${ADMIN_SETTINGS}/templates`;
export const ADMIN_CREATE_TEMPLATE_PATTERN = `${ADMIN_SETTINGS}/templates/create/:flowId`;
export const ADMIN_UPDATE_TEMPLATE_PATTERN = `${ADMIN_SETTINGS}/templates/update/:templateId`;
export const ADMIN_API_TOKENS = `${ADMIN_SETTINGS}/api-tokens`;
export const CREATE_FLOW_FROM_TEMPLATE = (templateId) =>
`/editor/create?templateId=${templateId}`;