From 0bdbb3fce49bb4e8266a9e5cb4cf6a903e88223d Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Wed, 08 Apr 2026 19:43:36 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 applications/drone-command/src/utils/auth.js |   22 ++++++----------------
 1 files changed, 6 insertions(+), 16 deletions(-)

diff --git a/applications/drone-command/src/utils/auth.js b/applications/drone-command/src/utils/auth.js
index 4171132..6274b3b 100644
--- a/applications/drone-command/src/utils/auth.js
+++ b/applications/drone-command/src/utils/auth.js
@@ -1,20 +1,9 @@
-/*
- * @Author       : yuan
- * @Date         : 2026-01-06 09:47:09
- * @LastEditors  : yuan
- * @LastEditTime : 2026-01-06 11:03:04
- * @FilePath     : \applications\drone-command\src\utils\auth.js
- * @Description  : 
- * Copyright 2026 OBKoro1, All Rights Reserved. 
- * 2026-01-06 09:47:09
- */
-import Cookies from 'js-cookie';
+import Cookies from 'js-cookie'
 
-const TokenKey = 'saber3-access-token';
-const RefreshTokenKey = 'saber3-refresh-token';
+const TokenKey = 'command-access-token'
+const RefreshTokenKey = 'command-refresh-token';
 const SessionId = 'JSESSIONID';
 const UserId = 'b-user-id';
-
 export function getToken() {
 	return Cookies.get(TokenKey, {
 		path: '/'
@@ -46,5 +35,6 @@
 }
 
 export function removeRefreshToken() {
-	return Cookies.remove(RefreshTokenKey);
-}
\ No newline at end of file
+	return Cookies.remove(RefreshTokenKey)
+}
+

--
Gitblit v1.9.3