Skip to content

Commit

Permalink
Staging update 20230703 (#6617)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-schieder committed Jul 3, 2023
1 parent 74f68a6 commit 7c236cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion openslides-backend
Submodule openslides-backend updated 31 files
+2 −0 dev/docker-compose.dev.yml
+3 −3 global/data/example-data.json
+1 −1 global/data/initial-data.json
+5 −2 global/meta/models.yml
+1 −1 openslides_backend/action/actions/committee/committee_common_mixin.py
+1 −1 openslides_backend/action/actions/group/group_mixin.py
+1 −1 openslides_backend/action/actions/meeting/create.py
+1 −1 openslides_backend/action/actions/meeting/update.py
+3 −6 openslides_backend/action/actions/motion/create_base.py
+13 −1 openslides_backend/action/actions/motion/mixins.py
+4 −9 openslides_backend/action/actions/motion/reset_state.py
+4 −10 openslides_backend/action/actions/motion/set_state.py
+5 −11 openslides_backend/action/actions/motion/update.py
+1 −1 openslides_backend/action/actions/motion_state/create.py
+1 −1 openslides_backend/action/actions/motion_state/update.py
+3 −3 openslides_backend/action/actions/motion_workflow/create.py
+1 −1 openslides_backend/action/actions/organization/update.py
+61 −0 openslides_backend/migrations/migrations/0043_update_workflow_timestamp.py
+4 −3 openslides_backend/models/models.py
+31 −0 tests/system/action/committee/test_create.py
+31 −0 tests/system/action/group/test_create.py
+29 −0 tests/system/action/meeting/test_create.py
+5 −3 tests/system/action/motion/test_create.py
+7 −5 tests/system/action/motion/test_reset_state.py
+4 −2 tests/system/action/motion/test_set_state.py
+26 −4 tests/system/action/motion/test_update.py
+2 −2 tests/system/action/motion_state/test_create.py
+2 −2 tests/system/action/motion_state/test_update.py
+54 −0 tests/system/action/organization/test_update.py
+1 −1 tests/system/action/test_action_worker.py
+126 −0 tests/system/migrations/test_0043_update_workflow_timestamp.py
2 changes: 1 addition & 1 deletion openslides-client
Submodule openslides-client updated 29 files
+1 −1 client/package.json
+2 −2 client/src/app/domain/models/motions/motion-state.ts
+2 −0 client/src/app/domain/models/motions/motion.ts
+35 −4 client/src/app/site/pages/meetings/modules/poll/pipes/poll-key-verbose/poll-key-verbose.pipe.spec.ts
+42 −5 client/src/app/site/pages/meetings/modules/poll/pipes/poll-parse-number/poll-parse-number.pipe.spec.ts
+161 −5 client/src/app/site/pages/meetings/modules/poll/pipes/poll-percent-base/poll-percent-base.pipe.spec.ts
+4 −0 ...t/src/app/site/pages/meetings/pages/agenda/modules/topics/modules/topic-poll/services/topic-poll.service.ts
+1 −1 ...es/meetings/pages/mediafiles/modules/mediafile-list/components/mediafile-list/mediafile-list.component.html
+1 −0 client/src/app/site/pages/meetings/pages/motions/motions.subscription.ts
+6 −0 ...ages/meetings/pages/motions/pages/motion-detail/components/motion-meta-data/motion-meta-data.component.html
+1 −1 ...p/site/pages/meetings/pages/motions/pages/workflows/components/workflow-detail/workflow-detail.component.ts
+16 −6 .../pages/settings/modules/settings-detail/components/organization-settings/organization-settings.component.ts
+0 −17 client/src/app/ui/pipes/async/openslides-async.pipe.spec.ts
+0 −126 client/src/app/ui/pipes/async/openslides-async.pipe.ts
+46 −4 client/src/app/ui/pipes/entries/entries.pipe.spec.ts
+181 −4 client/src/app/ui/pipes/localized-date-range/localized-date-range.pipe.spec.ts
+8 −43 client/src/app/ui/pipes/localized-date-range/localized-date-range.pipe.ts
+20 −4 client/src/app/ui/pipes/localized-date/localized-date.pipe.spec.ts
+1 −1 client/src/app/ui/pipes/localized-date/localized-date.pipe.ts
+1 −8 client/src/app/ui/pipes/pipes.module.ts
+28 −3 client/src/app/ui/pipes/readable-bytes/readable-bytes.pipe.spec.ts
+18 −4 client/src/app/ui/pipes/reverse/reverse.pipe.spec.ts
+0 −8 client/src/app/ui/pipes/slice/openslides-slice.pipe.spec.ts
+0 −50 client/src/app/ui/pipes/slice/openslides-slice.pipe.ts
+18 −3 client/src/app/ui/pipes/to-array/to-array.pipe.spec.ts
+1 −1 client/src/app/ui/pipes/to-array/to-array.pipe.ts
+41 −3 client/src/app/ui/pipes/to-string/to-string.pipe.spec.ts
+3 −0 client/src/app/ui/pipes/to-string/to-string.pipe.ts
+35 −4 client/src/app/ui/pipes/trust/trust.pipe.spec.ts

0 comments on commit 7c236cf

Please sign in to comment.