added MaxUserCapacity setting
This commit is contained in:
parent
ffdd041a8c
commit
e54eebc9b5
2 changed files with 3 additions and 1 deletions
|
@ -7,5 +7,6 @@
|
||||||
public string AdminEmail { get; set; }
|
public string AdminEmail { get; set; }
|
||||||
public bool ResolveMentionsInProfiles { get; set; }
|
public bool ResolveMentionsInProfiles { get; set; }
|
||||||
public bool PublishReplies { get; set; }
|
public bool PublishReplies { get; set; }
|
||||||
|
public int MaxUsersCapacity { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -14,7 +14,8 @@
|
||||||
"Domain": "domain.name",
|
"Domain": "domain.name",
|
||||||
"AdminEmail": "me@domain.name",
|
"AdminEmail": "me@domain.name",
|
||||||
"ResolveMentionsInProfiles": true,
|
"ResolveMentionsInProfiles": true,
|
||||||
"PublishReplies": false
|
"PublishReplies": false,
|
||||||
|
"MaxUsersCapacity": 1400
|
||||||
},
|
},
|
||||||
"Db": {
|
"Db": {
|
||||||
"Type": "postgres",
|
"Type": "postgres",
|
||||||
|
|
Loading…
Add table
Reference in a new issue