Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge branch 'main' into feature/relational-db #86

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
autoflake==2.3.1
black==24.3.0
black==24.4.0
flake8==7.0.0
isort==5.13.2
mypy==1.9.0
Expand Down
15 changes: 14 additions & 1 deletion models.yml
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ user:
restriction_mode: A
is_active:
type: boolean
restriction_mode: D
restriction_mode: B
is_physical_person:
type: boolean
default: true
Expand Down Expand Up @@ -1063,6 +1063,10 @@ meeting:
type: boolean
default: False
restriction_mode: B
agenda_show_topic_navigation_on_detail_view:
type: boolean
default: False
restriction_mode: B

# List of speakers
list_of_speakers_amount_last_on_projector:
Expand Down Expand Up @@ -1436,6 +1440,15 @@ meeting:
users_enable_vote_delegations:
type: boolean
restriction_mode: B
users_forbid_delegator_in_list_of_speakers:
type: boolean
restriction_mode: B
users_forbid_delegator_as_submitter:
type: boolean
restriction_mode: B
users_forbid_delegator_as_supporter:
type: boolean
restriction_mode: B

# Assignments
assignments_export_title:
Expand Down