Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
1186bc3
Feature/new_vote_service (#3167)
vkrasnovyd Feb 26, 2026
e7a5dc8
Update vote meta (#3376)
bastianjoel Mar 2, 2026
a2fc582
Add onehundred percent base fields (#3386)
bastianjoel Mar 20, 2026
143ab4b
Update poll options format
bastianjoel Mar 20, 2026
c5449be
Update poll options format (#3407)
bastianjoel Apr 23, 2026
c7f9ede
Merge branch 'main' into new-poll-options-format
bastianjoel Apr 23, 2026
0be374c
Merge branch 'feature/vote' into new-poll-options-format
bastianjoel Apr 23, 2026
bf0a757
Update meta
bastianjoel May 6, 2026
97444a2
Merge main into feature/vote
rrenkert May 6, 2026
4443f0f
Merge branch 'main' into merge-main-in-vote
vkrasnovyd May 7, 2026
d46c323
Update meta hash
vkrasnovyd May 7, 2026
57574f1
Lint
vkrasnovyd May 7, 2026
6893142
Merge vkrasnovyd/merge-main-in-vote into feature/vote
peb-adr May 7, 2026
8cf8900
Update models and permissions, use managed_by (#3559)
vkrasnovyd May 11, 2026
b09dde8
Fix example data (#3565)
bastianjoel May 12, 2026
3d8b617
Delete poll with vote adapter (#3590)
vkrasnovyd Jun 1, 2026
3eab0ff
Update meta hash
vkrasnovyd Jun 1, 2026
597c23e
Merge branch 'main' into feature/vote
vkrasnovyd Jun 1, 2026
e2897fb
[vote] Update user.merge_together (#3599)
vkrasnovyd Jun 4, 2026
6bba336
[vote] Complete export_helper, tests and docs (#3608)
vkrasnovyd Jun 8, 2026
0e6f783
[vote] Don't delete group with running poll (#3618)
vkrasnovyd Jun 26, 2026
ce36e4e
Update meta (#3646)
bastianjoel Jul 1, 2026
d44bef8
Merge branch 'main' into feature/vote
vkrasnovyd Jul 7, 2026
994920e
[vote] Write changed user fields in history_entry (#3659)
vkrasnovyd Jul 10, 2026
b8ba5b9
[vote] Update meeting defaults for polls (#3644) (#3653)
vkrasnovyd Jul 13, 2026
b6d0f37
[vote] Delete polls in backend (#3661)
vkrasnovyd Jul 14, 2026
7150b58
[vote] Update history_entry.changed_fields (#3665)
vkrasnovyd Jul 14, 2026
78e4741
[vote] Rename changed_fields (#3676)
vkrasnovyd Jul 17, 2026
f389145
[vote] Move user information from poll_ballot to separate collection …
vkrasnovyd Jul 17, 2026
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: 2 additions & 0 deletions cli/generate_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from openslides_backend.models.mixins import (
AgendaItemModelMixin,
MeetingModelMixin,
MeetingPollDefaultModelMixin,
PollModelMixin,
)
from openslides_backend.shared.patterns import KEYSEPARATOR, Collection
Expand Down Expand Up @@ -59,6 +60,7 @@
MODEL_MIXINS: dict[str, type] = {
"agenda_item": AgendaItemModelMixin,
"meeting": MeetingModelMixin,
"meeting_poll_default": MeetingPollDefaultModelMixin,
"poll": PollModelMixin,
}

Expand Down
Loading