Skip to content

Commit

Permalink
Update integration to 1.31.6-14
Browse files Browse the repository at this point in the history
  • Loading branch information
mtnstar committed Nov 30, 2023
1 parent 1c8b0c2 commit 0512008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hitobito
Submodule hitobito updated 40 files
+1 −0 CHANGELOG.md
+10 −4 app/abilities/role_ability.rb
+43 −0 app/controllers/roles/terminations_controller.rb
+7 −2 app/controllers/roles_controller.rb
+1 −1 app/decorators/application_decorator.rb
+27 −2 app/decorators/role_decorator.rb
+1 −1 app/domain/role/list.rb
+58 −0 app/domain/roles/termination.rb
+10 −1 app/helpers/roles_helper.rb
+27 −0 app/helpers/terminations_helper.rb
+8 −16 app/jobs/people/create_roles_job.rb
+15 −4 app/jobs/people/destroy_roles_job.rb
+28 −0 app/jobs/people/roles_base_job.rb
+1 −1 app/models/future_role.rb
+34 −1 app/models/role.rb
+2 −1 app/views/person/history/_roles_table.html.haml
+12 −0 app/views/roles/terminations/_errors.html.haml
+32 −0 app/views/roles/terminations/_modal_form.html.haml
+8 −0 app/views/roles/terminations/create.js.haml
+9 −0 app/views/roles/terminations/new.js.haml
+1 −0 bin/active_wagon.rb
+27 −0 bin/rubocop
+20 −0 config/locales/models.de.yml
+22 −0 config/locales/views.de.yml
+2 −0 config/routes.rb
+12 −0 db/migrate/20231109093807_add_terminated_to_roles.rb
+1 −0 db/schema.rb
+1 −0 doc/modules/README.md
+8 −0 doc/modules/roles.md
+44 −0 spec/controllers/roles/terminations_controller_spec.rb
+29 −3 spec/controllers/roles_controller_spec.rb
+95 −0 spec/decorators/role_decorator_spec.rb
+81 −0 spec/domain/roles/termination_spec.rb
+36 −0 spec/features/person/history_spec.rb
+10 −0 spec/features/roles/future_roles_spec.rb
+79 −0 spec/features/roles/terminations_spec.rb
+10 −2 spec/features/roles_controller_spec.rb
+12 −3 spec/jobs/people/create_roles_job_spec.rb
+17 −3 spec/jobs/people/destroy_roles_job_spec.rb
+141 −0 spec/models/role_spec.rb

0 comments on commit 0512008

Please sign in to comment.