Add field limit_of_users to organization.

This commit is contained in:
Ludwig Reiter 2021-10-26 11:43:51 +02:00
parent cd3dfb4229
commit b97b0de412
3 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,5 @@
{ {
"_migration_index": 7, "_migration_index": 8,
"organization": { "organization": {
"1": { "1": {
"id": 1, "id": 1,
@ -11,6 +11,7 @@
"reset_password_verbose_errors": false, "reset_password_verbose_errors": false,
"enable_electronic_voting": false, "enable_electronic_voting": false,
"limit_of_meetings": 0, "limit_of_meetings": 0,
"limit_of_users": 0,
"committee_ids": [ "committee_ids": [
1 1
], ],

View File

@ -17,6 +17,7 @@
1 1
], ],
"limit_of_meetings": 20, "limit_of_meetings": 20,
"limit_of_users": 40,
"resource_ids": [ "resource_ids": [
1 1
], ],

View File

@ -100,6 +100,12 @@ organization:
restriction_mode: B restriction_mode: B
default: 0 default: 0
minimum: 0 minimum: 0
limit_of_users:
type: number
description: Maximum of active users for the whole organization. 0 means no limitation at all
restriction_mode: B
default: 0
minimum: 0
committee_ids: committee_ids:
type: relation-list type: relation-list