mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
47 lines
954 B
Go
47 lines
954 B
Go
package view
|
|
|
|
import (
|
|
"github.com/muety/wakapi/models"
|
|
"time"
|
|
)
|
|
|
|
type SettingsViewModel struct {
|
|
User *models.User
|
|
LanguageMappings []*models.LanguageMapping
|
|
Aliases []*SettingsVMCombinedAlias
|
|
Labels []*SettingsVMCombinedLabel
|
|
Projects []string
|
|
SubscriptionPrice string
|
|
DataRetentionMonths int
|
|
UserFirstData time.Time
|
|
SupportContact string
|
|
ApiKey string
|
|
Success string
|
|
Error string
|
|
}
|
|
|
|
type SettingsVMCombinedAlias struct {
|
|
Key string
|
|
Type uint8
|
|
Values []string
|
|
}
|
|
|
|
type SettingsVMCombinedLabel struct {
|
|
Key string
|
|
Values []string
|
|
}
|
|
|
|
func (s *SettingsViewModel) SubscriptionsEnabled() bool {
|
|
return s.SubscriptionPrice != ""
|
|
}
|
|
|
|
func (s *SettingsViewModel) WithSuccess(m string) *SettingsViewModel {
|
|
s.Success = m
|
|
return s
|
|
}
|
|
|
|
func (s *SettingsViewModel) WithError(m string) *SettingsViewModel {
|
|
s.Error = m
|
|
return s
|
|
}
|