mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
feat(subscriptions): introduce config options and user attribute to support subscriptions
This commit is contained in:
parent
52d45d4644
commit
333c1b5dd0
@ -122,6 +122,10 @@ type serverConfig struct {
|
|||||||
TlsKeyPath string `yaml:"tls_key_path" default:"" env:"WAKAPI_TLS_KEY_PATH"`
|
TlsKeyPath string `yaml:"tls_key_path" default:"" env:"WAKAPI_TLS_KEY_PATH"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type subscriptionsConfig struct {
|
||||||
|
Enabled bool `yaml:"enabled" default:"false" env:"WAKAPI_SUBSCRIPTIONS_ENABLED"`
|
||||||
|
}
|
||||||
|
|
||||||
type sentryConfig struct {
|
type sentryConfig struct {
|
||||||
Dsn string `env:"WAKAPI_SENTRY_DSN"`
|
Dsn string `env:"WAKAPI_SENTRY_DSN"`
|
||||||
EnableTracing bool `yaml:"enable_tracing" env:"WAKAPI_SENTRY_TRACING"`
|
EnableTracing bool `yaml:"enable_tracing" env:"WAKAPI_SENTRY_TRACING"`
|
||||||
@ -161,6 +165,7 @@ type Config struct {
|
|||||||
Security securityConfig
|
Security securityConfig
|
||||||
Db dbConfig
|
Db dbConfig
|
||||||
Server serverConfig
|
Server serverConfig
|
||||||
|
Subscriptions subscriptionsConfig
|
||||||
Sentry sentryConfig
|
Sentry sentryConfig
|
||||||
Mail mailConfig
|
Mail mailConfig
|
||||||
}
|
}
|
||||||
|
@ -34,6 +34,7 @@ type User struct {
|
|||||||
ResetToken string `json:"-"`
|
ResetToken string `json:"-"`
|
||||||
ReportsWeekly bool `json:"-" gorm:"default:false; type:bool"`
|
ReportsWeekly bool `json:"-" gorm:"default:false; type:bool"`
|
||||||
PublicLeaderboard bool `json:"-" gorm:"default:false; type:bool"`
|
PublicLeaderboard bool `json:"-" gorm:"default:false; type:bool"`
|
||||||
|
SubscribedUntil *CustomTime `json:"-" gorm:"type:timestamp" swaggertype:"string" format:"date" example:"2006-01-02 15:04:05.000"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Login struct {
|
type Login struct {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user