2022-12-27 09:38:35 +01:00
|
|
|
import { Key } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2022-12-27 09:38:35 +01:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.jwt-parser.title'),
|
2022-12-27 09:38:35 +01:00
|
|
|
path: '/jwt-parser',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.jwt-parser.description'),
|
2023-01-13 13:59:27 +01:00
|
|
|
keywords: [
|
|
|
|
'jwt',
|
|
|
|
'parser',
|
|
|
|
'decode',
|
|
|
|
'typ',
|
|
|
|
'alg',
|
|
|
|
'iss',
|
|
|
|
'sub',
|
|
|
|
'aud',
|
|
|
|
'exp',
|
|
|
|
'nbf',
|
|
|
|
'iat',
|
|
|
|
'jti',
|
|
|
|
'json',
|
|
|
|
'web',
|
|
|
|
'token',
|
|
|
|
],
|
2022-12-27 09:38:35 +01:00
|
|
|
component: () => import('./jwt-parser.vue'),
|
|
|
|
icon: Key,
|
|
|
|
});
|