feat(api) Added function to get the URL of an user avatar

This commit is contained in:
Ferdinand Thiessen 2021-11-29 17:21:49 +01:00
parent cb43b8a39b
commit 6c219c5226
2 changed files with 8 additions and 0 deletions

View File

@ -5,5 +5,6 @@ export * from './src/stores/';
export * from './src/utils/datetime';
export * from './src/utils/permission';
export * from './src/utils/persistent';
export * from './src/utils/user';
export * from './src/utils/validators';
export * from './src/utils/misc';

7
api/src/utils/user.ts Normal file
View File

@ -0,0 +1,7 @@
import { api } from '../internal';
export function avatarURL(user: FG.User, thumbnail = true) {
return `${api.defaults?.baseURL || ''}/users/${user.userid}/avatar${
thumbnail ? '?thumbnail' : ''
}`;
}