wakapi/models/view/summary.go

29 lines
585 B
Go
Raw Normal View History

2020-11-06 23:19:54 +03:00
package view
2021-12-16 14:39:41 +03:00
import "github.com/muety/wakapi/models"
2020-11-06 23:19:54 +03:00
type SummaryViewModel struct {
2021-12-16 14:39:41 +03:00
*models.Summary
*models.SummaryParams
User *models.User
AvatarURL string
VibrantColor bool
EditorColors map[string]string
2021-12-16 14:39:41 +03:00
LanguageColors map[string]string
OSColors map[string]string
2021-12-16 14:39:41 +03:00
Error string
Success string
ApiKey string
RawQuery string
2020-11-06 23:19:54 +03:00
}
func (s *SummaryViewModel) WithSuccess(m string) *SummaryViewModel {
s.Success = m
return s
}
func (s *SummaryViewModel) WithError(m string) *SummaryViewModel {
s.Error = m
return s
}