in the middle, working for login and logout test,

This commit is contained in:
louiscklaw
2025-05-14 17:19:48 +08:00
parent 56f0f30ffb
commit 0fcc194860
5 changed files with 60 additions and 22 deletions

View File

@@ -0,0 +1,5 @@
import { DBUserMeta } from '../db/UserMetas/type';
export function getStudentAvatar(studentMeta: DBUserMeta) {
return `url(http://localhost:8090/api/files/${studentMeta.collectionId}/${studentMeta.id}/${studentMeta.avatar})`;
}