d70aa1b21d
Add getting the user avatar from the api Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/68
24 lines
No EOL
479 B
JavaScript
24 lines
No EOL
479 B
JavaScript
import AbstractModel from './abstractModel'
|
|
import config from '../../public/config'
|
|
|
|
export default class UserModel extends AbstractModel {
|
|
constructor(data) {
|
|
super(data)
|
|
this.created = new Date(this.created)
|
|
this.updated = new Date(this.updated)
|
|
}
|
|
|
|
defaults() {
|
|
return {
|
|
id: 0,
|
|
email: '',
|
|
username: '',
|
|
created: null,
|
|
updated: null,
|
|
}
|
|
}
|
|
|
|
getAvatarUrl(size = 50) {
|
|
return `${config.VIKUNJA_API_BASE_URL}${this.username}/avatar?size=${size}`
|
|
}
|
|
} |