diff options
author | 2023-01-13 13:59:27 +0100 | |
---|---|---|
committer | 2023-01-13 14:02:44 +0100 | |
commit | f52f7a845c34ce7da57b11c17d261733be89554f (patch) | |
tree | 6fd78f5d5bfd6bebe4a26367381baef45c7d7a22 /src/tools/jwt-parser/index.ts | |
parent | acc7f0a586c64500c5f720e70cdbccf9bffe76d9 (diff) | |
download | it-tools-f52f7a845c34ce7da57b11c17d261733be89554f.tar.gz it-tools-f52f7a845c34ce7da57b11c17d261733be89554f.tar.zst it-tools-f52f7a845c34ce7da57b11c17d261733be89554f.zip |
refactor(jwt-parser): simplified code
Diffstat (limited to 'src/tools/jwt-parser/index.ts')
-rw-r--r-- | src/tools/jwt-parser/index.ts | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/src/tools/jwt-parser/index.ts b/src/tools/jwt-parser/index.ts index dcce4f1..7249ace 100644 --- a/src/tools/jwt-parser/index.ts +++ b/src/tools/jwt-parser/index.ts @@ -4,8 +4,24 @@ import { defineTool } from '../tool'; export const tool = defineTool({ name: 'JWT parser', path: '/jwt-parser', - description: 'Parse a JWT (JSON Web Token) to display its content.', - keywords: ['jwt', 'parser'], + description: 'Parse and decode your JSON Web Token (jwt) and display its content.', + keywords: [ + 'jwt', + 'parser', + 'decode', + 'typ', + 'alg', + 'iss', + 'sub', + 'aud', + 'exp', + 'nbf', + 'iat', + 'jti', + 'json', + 'web', + 'token', + ], component: () => import('./jwt-parser.vue'), icon: Key, }); |