Skip to content

Commit

Permalink
Update integration to 2.0.4-8
Browse files Browse the repository at this point in the history
  • Loading branch information
mtnstar committed Feb 21, 2024
1 parent 3a4b154 commit 32d0f16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hitobito
Submodule hitobito updated 96 files
+1 −0 CHANGELOG.md
+1 −0 Gemfile
+10 −5 Gemfile.lock
+1 −0 app/controllers/application_controller.rb
+31 −0 app/controllers/concerns/turbo/redirection.rb
+1 −1 app/controllers/event/participations_controller.rb
+1 −0 app/controllers/groups_controller.rb
+2 −1 app/controllers/roles_controller.rb
+1 −0 app/domain/export/tabular/groups/list.rb
+10 −11 app/helpers/action_helper.rb
+1 −1 app/helpers/dropdown/invoice_new.rb
+1 −1 app/helpers/dropdown/invoice_sending.rb
+1 −0 app/helpers/dropdown/participation_lists.rb
+2 −2 app/helpers/dropdown/table_displays.rb
+9 −9 app/helpers/event/participation_banner.rb
+1 −1 app/helpers/filter_navigation/people.rb
+10 −6 app/helpers/form_helper.rb
+3 −3 app/helpers/navigation_helper.rb
+6 −6 app/helpers/sheet/group.rb
+2 −2 app/helpers/sheet/group/nav_left.rb
+1 −1 app/helpers/sheet/tab.rb
+9 −0 app/javascript/controllers/application.js
+7 −0 app/javascript/controllers/hello_controller.js
+1 −1 app/javascript/javascripts/modules/auto_submit.js.coffee
+1 −1 app/javascript/javascripts/modules/clear_input.js.coffee
+2 −2 app/javascript/javascripts/modules/collapse_overflow_fix.js.coffee
+1 −1 app/javascript/javascripts/modules/element_swapper.js.coffee
+1 −1 app/javascript/javascripts/modules/element_toggler.js.coffee
+1 −1 app/javascript/javascripts/modules/events/course_description_handler.js.coffee
+1 −1 app/javascript/javascripts/modules/help_texts.js.coffee
+1 −1 app/javascript/javascripts/modules/input_enabler.js.coffee
+1 −1 app/javascript/javascripts/modules/multiselect.js.coffee
+1 −1 app/javascript/javascripts/modules/notes.js.coffee
+1 −1 app/javascript/javascripts/modules/on_page_load.js.coffee
+1 −1 app/javascript/javascripts/modules/people/people_filter_role_toggle.js.coffee
+30 −39 app/javascript/javascripts/modules/popover_handler.js
+2 −1 app/javascript/javascripts/modules/remote_autocomplete.js
+1 −1 app/javascript/javascripts/modules/tom_select.js
+3 −3 app/javascript/javascripts/modules/tooltips.js.coffee
+10 −5 app/javascript/packs/application.js
+1 −1 app/javascript/stylesheets/hitobito/_main.scss
+1 −1 app/javascript/stylesheets/hitobito/modules/_turbo_progress_bar.scss
+8 −4 app/models/self_registration.rb
+14 −0 app/models/self_registration/adult_consent.rb
+4 −1 app/models/self_registration/main_person.rb
+5 −0 app/models/self_registration/person.rb
+2 −2 app/views/devise/sessions/_form.html.haml
+1 −1 app/views/event/application_market/_waiting_list_link.html.haml
+1 −1 app/views/event/application_market/index.html.haml
+1 −1 app/views/event/lists/_nav_left_events.html.haml
+1 −1 app/views/event/qualifications/index.html.haml
+5 −5 app/views/events/courses/_nav_left.html.haml
+3 −0 app/views/groups/_self_registration_fields.html.haml
+8 −0 app/views/groups/self_registration/_adult_consent_field.html.haml
+1 −1 app/views/groups/self_registration/_form.html.haml
+25 −24 app/views/groups/self_registration/_main_person.html.haml
+1 −1 app/views/invoices/_actions_index.html.haml
+1 −2 app/views/invoices/_actions_show.html.haml
+1 −1 app/views/layouts/_file_download.html.haml
+2 −2 app/views/layouts/_languages.html.haml
+1 −1 app/views/layouts/_nav.html.haml
+1 −1 app/views/layouts/_synchronization.html.haml
+5 −4 app/views/layouts/application.html.haml
+3 −3 app/views/layouts/oauth.html.haml
+1 −1 app/views/people/_actions_show.html.haml
+1 −1 app/views/person/security_tools/index.html.haml
+1 −2 app/views/person/tags/_tag.html.haml
+1 −1 app/views/public_events/show.html.haml
+1 −1 app/views/second_factor_authentication/_form.html.haml
+1 −1 app/views/table_displays/create.js.haml
+3 −0 config/application.rb
+2 −1 config/cable.yml
+2 −7 config/initializers/devise.rb
+1 −0 config/locales/models.de.yml
+6 −0 config/locales/views.de.yml
+14 −0 db/migrate/20240214155008_add_self_registration_require_adult_consent_to_groups.rb
+2 −1 db/schema.rb
+46 −6 lib/tasks/dev.rake
+3 −3 package.json
+2 −1 spec/components/steps_component/content_component_spec.rb
+3 −2 spec/components/steps_component_spec.rb
+1 −1 spec/controllers/people_controller_spec.rb
+1 −1 spec/controllers/person_duplicates/ignore_controller_spec.rb
+1 −1 spec/controllers/person_duplicates/merge_controller_spec.rb
+1 −1 spec/controllers/roles_controller_spec.rb
+8 −2 spec/features/email_verification_spec.rb
+2 −0 spec/features/event/application_market_controller_spec.rb
+1 −1 spec/features/invoice_lists/destroys_controller_spec.rb
+2 −0 spec/features/messages_spec.rb
+5 −3 spec/features/roles/future_roles_spec.rb
+5 −6 spec/features/roles_controller_spec.rb
+24 −1 spec/features/self_registration_spec.rb
+1 −0 spec/features/subscriber_lists_controller_spec.rb
+28 −0 spec/models/self_registration/main_person_spec.rb
+1 −1 spec/regressions/roles_controller_spec.rb
+18 −10 yarn.lock
2 changes: 1 addition & 1 deletion hitobito_jubla

0 comments on commit 32d0f16

Please sign in to comment.