zhaoyingbo 865308ee31
All checks were successful
Egg CI/CD / build-image (push) Successful in 8m16s
Egg CI/CD / deploy (push) Successful in 7m47s
feat: Update code formatting and fix minor issues
2024-05-05 02:34:16 +00:00

33 lines
673 B
TypeScript

import pbClient from "../pbClient";
let token = "";
/**
* 更新租户的token
* @param {string} value 新的token
*/
const update = async (value: string) => {
await pbClient.collection("config").update("ugel8f0cpk0rut6", { value });
token = value;
console.log("reset access token success", value);
};
/**
* 获取租户的token
* @returns {string} 租户的token
*/
const get = async () => {
if (token) return token;
const { value } = await pbClient
.collection("config")
.getOne("ugel8f0cpk0rut6");
return value as string;
};
const tenantAccessToken = {
update,
get,
};
export default tenantAccessToken;