wakapi/models/view/settings.go

46 lines
912 B
Go
Raw Normal View History

2020-11-06 23:19:54 +03:00
package view
import (
"github.com/muety/wakapi/models"
"time"
)
2020-11-06 23:19:54 +03:00
type SettingsViewModel struct {
Messages
User *models.User
LanguageMappings []*models.LanguageMapping
Aliases []*SettingsVMCombinedAlias
Labels []*SettingsVMCombinedLabel
Projects []string
SubscriptionPrice string
DataRetentionMonths int
UserFirstData time.Time
SupportContact string
ApiKey string
2020-11-06 23:19:54 +03:00
}
type SettingsVMCombinedAlias struct {
Key string
Type uint8
Values []string
}
2021-06-12 11:44:19 +03:00
type SettingsVMCombinedLabel struct {
Key string
Values []string
}
2022-12-21 01:08:59 +03:00
func (s *SettingsViewModel) SubscriptionsEnabled() bool {
return s.SubscriptionPrice != ""
}
2020-11-06 23:19:54 +03:00
func (s *SettingsViewModel) WithSuccess(m string) *SettingsViewModel {
s.SetSuccess(m)
2020-11-06 23:19:54 +03:00
return s
}
func (s *SettingsViewModel) WithError(m string) *SettingsViewModel {
s.SetError(m)
2020-11-06 23:19:54 +03:00
return s
}