feat: 新增个人身体画像评估与馆主经营助手
把 3 分钟身体状态评估做成独立获客链路,匿名测评后登录认领完整报告,并接入体验预约与今日待办。 Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
13
packages/server/src/body-portrait/body-portrait.token.ts
Normal file
13
packages/server/src/body-portrait/body-portrait.token.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { createHash, randomBytes } from 'crypto'
|
||||
|
||||
export function createAccessToken(): string {
|
||||
return randomBytes(32).toString('hex')
|
||||
}
|
||||
|
||||
export function hashToken(token: string): string {
|
||||
return createHash('sha256').update(token).digest('hex')
|
||||
}
|
||||
|
||||
export function createShareCode(): string {
|
||||
return randomBytes(6).toString('hex')
|
||||
}
|
||||
Reference in New Issue
Block a user