mirror of
https://github.com/h44z/wg-portal.git
synced 2025-06-27 16:57:01 +00:00
15 lines
416 B
Go
15 lines
416 B
Go
package model
|
|
|
|
type Error struct {
|
|
Code int `json:"Code"`
|
|
Message string `json:"Message"`
|
|
}
|
|
|
|
type Settings struct {
|
|
MailLinkOnly bool `json:"MailLinkOnly"`
|
|
PersistentConfigSupported bool `json:"PersistentConfigSupported"`
|
|
SelfProvisioning bool `json:"SelfProvisioning"`
|
|
ApiAdminOnly bool `json:"ApiAdminOnly"`
|
|
WebAuthnEnabled bool `json:"WebAuthnEnabled"`
|
|
}
|