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/userSettings.js
kolaente d836b6f753
All checks were successful
continuous-integration/drone/push Build is passing
Add overdue task reminder notification setting
See vikunja/api#832
2021-04-11 16:30:49 +02:00

14 lines
287 B
JavaScript

import AbstractModel from './abstractModel'
export default class UserSettingsModel extends AbstractModel {
defaults() {
return {
name: '',
emailRemindersEnabled: true,
discoverableByName: false,
discoverableByEmail: false,
overdueTasksRemindersEnabled: true,
}
}
}