6 lines
231 B
TypeScript
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})`;
|
|
}
|