added MaxUserCapacity setting

This commit is contained in:
Nicolas Constant
2021-01-22 19:44:47 -05:00
parent ffdd041a8c
commit e54eebc9b5
2 changed files with 3 additions and 1 deletions

View File

@@ -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; }
} }
} }

View File

@@ -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",