mirror of
https://github.com/usememos/memos.git
synced 2025-02-22 14:17:48 +01:00
14 lines
325 B
Go
14 lines
325 B
Go
package api
|
|
|
|
import "github.com/usememos/memos/server/profile"
|
|
|
|
type SystemStatus struct {
|
|
Host *User `json:"host"`
|
|
Profile *profile.Profile `json:"profile"`
|
|
// System settings
|
|
// Allow sign up.
|
|
AllowSignUp bool `json:"allowSignUp"`
|
|
// Additional style.
|
|
AdditionalStyle string `json:"additionalStyle"`
|
|
}
|