This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/models/avatar.js
konrad ec1b039daa
All checks were successful
continuous-integration/drone/push Build is passing
More avatar providers (#200)
Reload the avatar after changing it

Hide cropper after upload

Fix aspect ratio

Add loading variable

Move avatar settings to seperate component

Add avatar crop

Fix avatar upload

Add avatar file upload

Add abstract methods for file upload

Add saving avatar status

Add avatar setting

Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #200
2020-08-02 17:17:29 +00:00

9 lines
158 B
JavaScript

import AbstractModel from './abstractModel'
export default class AvatarModel extends AbstractModel {
defaults() {
return {
avatarProvider: '',
}
}
}