Skip to content

Commit

Permalink
Update integration to 1.31.6-1
Browse files Browse the repository at this point in the history
  • Loading branch information
amaierhofer committed Nov 17, 2023
1 parent 219783c commit 2b5d2dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hitobito
Submodule hitobito updated 50 files
+17 −0 .pryrc
+8 −3 CHANGELOG.md
+20 −0 app/controllers/json_api/groups_controller.rb
+8 −6 app/controllers/person/history_controller.rb
+19 −6 app/controllers/roles_controller.rb
+15 −7 app/decorators/person_decorator.rb
+7 −1 app/domain/role/type_list.rb
+16 −6 app/helpers/filter_navigation/people.rb
+2 −0 app/helpers/roles_helper.rb
+35 −0 app/jobs/people/create_roles_job.rb
+67 −0 app/models/future_role.rb
+1 −0 app/models/group.rb
+17 −1 app/models/role.rb
+1 −1 app/models/role/types.rb
+33 −0 app/resources/group_resource.rb
+3 −1 app/views/people/_roles.html.haml
+16 −0 app/views/person/history/_roles_table.html.haml
+3 −10 app/views/person/history/index.html.haml
+1 −1 app/views/roles/_fields.html.haml
+3 −1 app/views/roles/_modal.html.haml
+7 −0 config/locales/models.de.yml
+5 −0 config/locales/views.de.yml
+1 −0 config/routes.rb
+15 −0 db/migrate/20231016131405_add_convert_on_to_roles.rb
+4 −1 db/schema.rb
+3 −1 doc/development/05_json_api.md
+2 −1 lib/tasks/delayed_jobs.rake
+63 −0 spec/controllers/json_api/groups_controller_spec.rb
+5 −1 spec/controllers/person/history_controller_spec.rb
+60 −29 spec/domain/person/filter/list_spec.rb
+3 −0 spec/fabricators/role_fabricator.rb
+4 −2 spec/features/event_external_application_spec.rb
+16 −18 spec/features/role_lists_controller_spec.rb
+193 −0 spec/features/roles/future_roles_spec.rb
+2 −0 spec/fixtures/roles.yml
+5 −0 spec/helpers/filter_navigation/people_spec.rb
+62 −0 spec/jobs/people/create_roles_job_spec.rb
+122 −0 spec/models/future_role_spec.rb
+9 −0 spec/models/group_spec.rb
+54 −4 spec/models/role_spec.rb
+2 −2 spec/regressions/person/history_controller_spec.rb
+36 −0 spec/requests/json_api/group_schema.rb
+86 −0 spec/requests/json_api/groups_spec.rb
+7 −0 spec/requests/json_api/person_schema.rb
+80 −11 spec/resources/group/reads_spec.rb
+18 −20 spec/resources/person/reads_spec.rb
+9 −15 spec/resources/role/reads_spec.rb
+1 −0 spec/spec_helper.rb
+28 −0 spec/support/resource_spec_helper.rb
+57 −0 swagger/swagger.yaml

0 comments on commit 2b5d2dc

Please sign in to comment.