Files
lettersoup-online/002_source/ionic_mobile/src/lib/getStudentAvatar.tsx
2025-05-14 17:19:48 +08:00

6 lines
231 B
TypeScript

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