We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 32c065d + 0f82676 commit dfd5c0cCopy full SHA for dfd5c0c
1 file changed
auth.ts
@@ -0,0 +1,5 @@
1
+export class AuthHandler {
2
+ validateToken(token: string): boolean {
3
+ return token.length > 0 && token.startsWith('Bearer ');
4
+ }
5
+}
0 commit comments