added MaxUserCapacity setting

This commit is contained in:
Nicolas Constant 2021-01-22 19:44:47 -05:00
parent ffdd041a8c
commit e54eebc9b5
No known key found for this signature in database
GPG key ID: 1E9F677FB01A5688
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",