feat: add jwt authorization (#19)
Release package / release (push) Failing after 3m18s

Co-authored-by: TakahashiNg <83152264+TakahashiNguyen@users.noreply.github.com>
Reviewed-on: #19
This commit was merged in pull request #19.
This commit is contained in:
2026-04-09 03:05:40 +00:00
parent c632504b4f
commit 00cc6a0f1f
15 changed files with 309 additions and 65 deletions
@@ -1,7 +1,8 @@
package com.drinkool;
public class Jwt {
public class InternalValue {
public static final String cookieName = "auth";
public static final String headerId = "X-Internal-";
public static final String userId = headerId + "UserId";
public static final String role = headerId + "Role";