Skip to content

Commit

Permalink
Update production to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kronn committed Apr 2, 2024
1 parent 6ffe341 commit 12103be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hitobito
Submodule hitobito updated 533 files
2 changes: 1 addition & 1 deletion hitobito_youth
Submodule hitobito_youth updated 69 files
+3 −0 .gitignore
+1 −1 .ruby-version
+1 −1 .tool-versions
+38 −0 app/abilities/people_manager_ability.rb
+8 −0 app/abilities/youth/person_ability.rb
+1 −1 app/controllers/event/participation_contact_data/managed_controller.rb
+74 −0 app/controllers/people_managers_controller.rb
+31 −0 app/controllers/person/manageds_controller.rb
+21 −0 app/controllers/person/managers_controller.rb
+17 −1 app/controllers/youth/event/participation_contact_datas_controller.rb
+0 −75 app/controllers/youth/people_controller.rb
+0 −6 app/domain/youth/export/tabular/events/list.rb
+13 −3 app/domain/youth/mail_relay/address_list.rb
+61 −0 app/helpers/dropdown/add_people_manager.rb
+3 −0 app/models/people_manager.rb
+1 −1 app/models/youth/event.rb
+3 −3 app/models/youth/event/course.rb
+14 −9 app/models/youth/person.rb
+1 −1 app/views/events/_actions_show.html.haml
+0 −8 app/views/events/_fields_youth.html.haml
+0 −7 app/views/events/_show_left_youth.html.haml
+0 −4 app/views/people/_details_youth.html.haml
+0 −16 app/views/people/_fields_youth.html.haml
+17 −0 app/views/people/_show_right_youth.html.haml
+0 −11 app/views/people/manageds/_fields.html.haml
+0 −11 app/views/people/managers/_fields.html.haml
+10 −0 app/views/people_managers/_delete_link.html.haml
+11 −0 app/views/people_managers/_list.html.haml
+18 −0 app/views/people_managers/_section.html.haml
+4 −0 app/views/people_managers/_submit_buttons.html.haml
+6 −0 app/views/people_managers/index.html.haml
+17 −0 app/views/person/manageds/_list.html.haml
+13 −0 app/views/person/manageds/_new_person_fields.html.haml
+17 −0 app/views/person/manageds/new.html.haml
+17 −0 app/views/person/managers/_list.html.haml
+13 −0 app/views/person/managers/new.html.haml
+6 −0 config/locales/models.youth.de.yml
+70 −0 config/locales/models.youth.en.yml
+24 −3 config/locales/models.youth.fr.yml
+27 −5 config/locales/models.youth.it.yml
+17 −18 config/locales/views.youth.de.yml
+96 −0 config/locales/views.youth.en.yml
+84 −6 config/locales/views.youth.fr.yml
+54 −0 config/locales/views.youth.it.yml
+6 −1 config/routes.rb
+1 −1 lib/hitobito_youth/version.rb
+7 −11 lib/hitobito_youth/wagon.rb
+60 −0 spec/abilities/people_manager_ability_spec.rb
+27 −0 spec/abilities/person_ability_spec.rb
+12 −0 spec/api/graphiti_schema_spec.rb
+1 −1 spec/controllers/event/participations_controller_spec.rb
+0 −159 spec/controllers/people_controller_spec.rb
+13 −0 spec/controllers/person/manageds_controller_spec.rb
+13 −0 spec/controllers/person/managers_controller_spec.rb
+78 −0 spec/controllers/person/people_managers_shared_examples.rb
+22 −22 spec/domain/mail_relay/address_list_spec.rb
+68 −27 spec/features/event_register_managed_spec.rb
+95 −0 spec/features/event_registration_spec.rb
+14 −14 spec/features/external_event_register_manager_spec.rb
+0 −355 spec/features/people_manager_relation_spec.rb
+104 −0 spec/features/people_managers_spec.rb
+97 −0 spec/features/people_merge_spec.rb
+10 −0 spec/fixtures/people.yml
+11 −0 spec/fixtures/people_managers.yml
+10 −0 spec/fixtures/roles.yml
+47 −0 spec/helpers/dropdown/add_people_manager_spec.rb
+41 −3 spec/models/people_manager_spec.rb
+23 −14 spec/models/person_spec.rb
+1,897 −0 spec/support/graphiti/schema.json

0 comments on commit 12103be

Please sign in to comment.