Skip to content

Commit

Permalink
Update integration to 2.3.7-6
Browse files Browse the repository at this point in the history
  • Loading branch information
amaierhofer committed Nov 20, 2024
1 parent 8c2e681 commit 6cfa1dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hitobito
Submodule hitobito updated 39 files
+31 −26 .github/actions/wagon-ci-setup/action.yml
+28 −27 .github/workflows/wagon-tests.yml
+72 −0 app/controllers/event/invitation_lists_controller.rb
+27 −0 app/controllers/event/invitations_controller.rb
+16 −8 app/controllers/event/participation_lists_controller.rb
+2 −2 app/controllers/events_controller.rb
+8 −3 app/domain/export/tabular/base.rb
+17 −0 app/domain/export/tabular/invitations/list.rb
+34 −0 app/domain/export/tabular/invitations/row.rb
+2 −2 app/domain/export/tabular/people/participations_households.rb
+16 −1 app/domain/export/tabular/row.rb
+3 −1 app/domain/people/one_time_password.rb
+10 −0 app/helpers/dropdown/participation_lists.rb
+4 −0 app/helpers/layout_helper.rb
+33 −0 app/javascript/javascripts/modules/invitation_lists.js.coffee
+1 −1 app/jobs/export/export_base_job.rb
+24 −0 app/jobs/export/invitations_export_job.rb
+4 −6 app/models/event/participation.rb
+15 −8 app/models/group.rb
+28 −0 app/views/event/invitation_lists/_new.html.haml
+3 −0 app/views/event/invitation_lists/new.js.haml
+3 −0 app/views/event/invitations/_actions_index.html.haml
+1 −1 app/views/event/invitations/_form.html.haml
+4 −2 app/views/event/participation_lists/_new.html.haml
+3 −2 app/views/layouts/application.html.haml
+3 −2 app/views/layouts/oauth.html.haml
+18 −2 config/locales/views.de.yml
+0 −2 config/locales/views.fr.yml
+0 −2 config/locales/views.it.yml
+2 −0 config/routes.rb
+14 −8 db/migrate/20240812093000_add_disclosure_to_event_questions.rb
+53 −0 spec/controllers/event/invitation_lists_controller_spec.rb
+12 −0 spec/controllers/event/invitations_controller_spec.rb
+2 −3 spec/controllers/event/participation_lists_controller_spec.rb
+19 −1 spec/controllers/person_duplicates_controller_spec.rb
+80 −0 spec/domain/export/tabular/invitations/list_spec.rb
+9 −1 spec/domain/people/one_time_password_spec.rb
+66 −0 spec/features/invitation_lists_controller_spec.rb
+43 −0 spec/jobs/export/invitations_export_job_spec.rb

0 comments on commit 6cfa1dc

Please sign in to comment.