Skip to content

Commit

Permalink
Update integration to 2.2.1-18
Browse files Browse the repository at this point in the history
  • Loading branch information
Largo committed Aug 2, 2024
1 parent 890ef65 commit e73194b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hitobito
Submodule hitobito updated 40 files
+15 −2 app/components/steps_component.html.haml
+5 −111 app/components/steps_component.rb
+107 −0 app/components/steps_component/content_component.rb
+33 −0 app/components/steps_component/header_component.rb
+31 −0 app/components/steps_component/iterating_component.rb
+47 −45 app/controllers/groups/self_registration_controller.rb
+3 −0 app/controllers/wizards/base_controller.rb
+20 −3 app/javascript/controllers/forwarder_controller.js
+2 −2 app/models/custom_content.rb
+0 −80 app/models/self_registration.rb
+0 −19 app/models/self_registration/housemate.rb
+0 −37 app/models/self_registration/main_person.rb
+0 −121 app/models/self_registration/person.rb
+3 −1 app/models/wizards/base.rb
+48 −0 app/models/wizards/register_new_user_wizard.rb
+42 −0 app/models/wizards/steps/new_user_form.rb
+6 −1 app/views/groups/_email_field.html.haml
+5 −6 app/views/groups/self_registration/_form.html.haml
+0 −57 app/views/groups/self_registration/_main_person.html.haml
+0 −14 app/views/groups/self_registration/new.html.haml
+11 −0 app/views/groups/self_registration/show.html.haml
+2 −2 app/views/layouts/application.html.haml
+1 −1 app/views/layouts/oauth.html.haml
+5 −0 app/views/wizards/show.html.haml
+19 −0 app/views/wizards/steps/_new_user_form.html.haml
+0 −2 config/locales/views.de.yml
+1 −1 config/routes.rb
+16 −38 spec/components/steps_component/content_component_spec.rb
+37 −0 spec/components/steps_component/header_component_spec.rb
+24 −24 spec/components/steps_component_spec.rb
+44 −61 spec/controllers/groups/self_registration_controller_spec.rb
+1 −1 spec/decorators/qualification_decorator_spec.rb
+37 −108 spec/features/self_registration_spec.rb
+0 −131 spec/models/self_registration/housemate_spec.rb
+0 −73 spec/models/self_registration/main_person_spec.rb
+0 −109 spec/models/self_registration/person_spec.rb
+0 −110 spec/models/self_registration_spec.rb
+1 −2 spec/models/wizards/base_spec.rb
+91 −0 spec/models/wizards/register_new_user_wizard_spec.rb
+108 −0 spec/models/wizards/steps/new_user_form_spec.rb

0 comments on commit e73194b

Please sign in to comment.