2016-03-05 15:15:49 -06:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2016-03-14 05:12:52 -05:00
|
|
|
"time"
|
2016-03-05 15:15:49 -06:00
|
|
|
)
|
|
|
|
|
2016-03-06 05:47:39 -06:00
|
|
|
type Preferences struct {
|
2016-03-15 16:49:52 -05:00
|
|
|
Id int64
|
|
|
|
OrgId int64
|
|
|
|
UserId int64
|
2018-11-12 13:01:53 -06:00
|
|
|
TeamId int64
|
2016-03-15 16:49:52 -05:00
|
|
|
Version int
|
|
|
|
HomeDashboardId int64
|
|
|
|
Timezone string
|
2021-10-18 08:27:14 -05:00
|
|
|
WeekStart string
|
2016-03-15 16:49:52 -05:00
|
|
|
Theme string
|
|
|
|
Created time.Time
|
|
|
|
Updated time.Time
|
2016-03-05 15:15:49 -06:00
|
|
|
}
|
|
|
|
|
2016-03-06 13:42:15 -06:00
|
|
|
// ---------------------
|
|
|
|
// QUERIES
|
|
|
|
|
|
|
|
type GetPreferencesQuery struct {
|
2016-03-11 08:30:05 -06:00
|
|
|
Id int64
|
|
|
|
OrgId int64
|
2016-03-14 05:12:52 -05:00
|
|
|
UserId int64
|
2018-11-12 13:01:53 -06:00
|
|
|
TeamId int64
|
2016-03-06 13:42:15 -06:00
|
|
|
|
2016-03-06 14:32:22 -06:00
|
|
|
Result *Preferences
|
2016-03-06 13:42:15 -06:00
|
|
|
}
|
|
|
|
|
2016-04-02 15:54:06 -05:00
|
|
|
type GetPreferencesWithDefaultsQuery struct {
|
2018-11-12 13:01:53 -06:00
|
|
|
User *SignedInUser
|
2016-04-02 15:54:06 -05:00
|
|
|
|
|
|
|
Result *Preferences
|
|
|
|
}
|
|
|
|
|
2016-03-05 15:15:49 -06:00
|
|
|
// ---------------------
|
|
|
|
// COMMANDS
|
2016-03-06 05:47:39 -06:00
|
|
|
type SavePreferencesCommand struct {
|
2016-03-15 16:49:52 -05:00
|
|
|
UserId int64
|
|
|
|
OrgId int64
|
2018-11-12 13:01:53 -06:00
|
|
|
TeamId int64
|
2016-03-06 13:42:15 -06:00
|
|
|
|
2016-03-17 01:35:06 -05:00
|
|
|
HomeDashboardId int64 `json:"homeDashboardId"`
|
|
|
|
Timezone string `json:"timezone"`
|
2021-10-18 08:27:14 -05:00
|
|
|
WeekStart string `json:"weekStart"`
|
2016-03-17 01:35:06 -05:00
|
|
|
Theme string `json:"theme"`
|
2016-03-06 13:42:15 -06:00
|
|
|
}
|