Skip to content

Commit

Permalink
Update integration to 1.31.0-3
Browse files Browse the repository at this point in the history
  • Loading branch information
mtnstar committed Oct 26, 2023
1 parent a8d5f3e commit a908779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hitobito
Submodule hitobito updated 52 files
+1 −0 app/abilities/ability.rb
+18 −0 app/abilities/self_registration_reason_ability.rb
+7 −5 app/controllers/roles_controller.rb
+23 −0 app/controllers/self_registration_reasons_controller.rb
+8 −2 app/domain/export/tabular/people/people_full.rb
+4 −0 app/domain/feature_gate.rb
+1 −1 app/helpers/dropdown/group_add.rb
+2 −1 app/helpers/navigation_helper.rb
+10 −0 app/helpers/sheet/self_registration_reason.rb
+15 −0 app/jobs/people/destroy_roles_job.rb
+0 −38 app/models/concerns/paranoia/future_deleted_at_scope.rb
+34 −0 app/models/concerns/people/self_registration_reasons.rb
+35 −5 app/models/group.rb
+0 −1 app/models/group/types.rb
+26 −4 app/models/message_recipient.rb
+3 −0 app/models/person.rb
+26 −20 app/models/role.rb
+28 −0 app/models/self_registration_reason.rb
+10 −8 app/serializers/role_serializer.rb
+3 −0 app/views/people/_attrs.html.haml
+2 −2 app/views/roles/_fields.html.haml
+7 −0 app/views/self_registration_reasons/_form.html.haml
+6 −0 app/views/self_registration_reasons/_list.html.haml
+2 −0 app/views/shared/_admin_left_nav.html.haml
+2 −2 config/initializers/active_model_name.rb
+10 −2 config/locales/models.de.yml
+4 −0 config/locales/views.de.yml
+2 −0 config/routes.rb
+22 −0 db/migrate/20231009105044_add_delete_at_to_roles.rb
+16 −0 db/migrate/20231010140815_make_name_nullable_on_groups.rb
+29 −0 db/migrate/20231016092502_create_self_registration_reasons.rb
+23 −4 db/schema.rb
+4 −2 db/seeds/support/person_seeder.rb
+45 −0 spec/abilities/self_registration_reason_ability_spec.rb
+17 −0 spec/controllers/roles_controller_spec.rb
+95 −0 spec/controllers/self_registration_reasons_controller_spec.rb
+12 −0 spec/domain/feature_gate_spec.rb
+0 −16 spec/domain/group/deleted_people_spec.rb
+10 −8 spec/fabricators/role_fabricator.rb
+10 −0 spec/fabricators/self_registration_reason_fabricator.rb
+43 −0 spec/features/admin_left_nav_spec.rb
+21 −0 spec/features/roles_controller_spec.rb
+10 −8 spec/fixtures/roles.yml
+16 −0 spec/fixtures/self_registration_reason/translations.yml
+19 −0 spec/fixtures/self_registration_reasons.yml
+9 −0 spec/helpers/dropdown/group_add_spec.rb
+49 −0 spec/jobs/people/destroy_roles_job_spec.rb
+156 −21 spec/models/group_spec.rb
+76 −0 spec/models/person_spec.rb
+49 −83 spec/models/role_spec.rb
+1 −0 spec/support/locales/test.de.yml
+1 −0 spec/support/locales/test.fr.yml

0 comments on commit a908779

Please sign in to comment.