Skip to content

Commit

Permalink
Update integration to 2.0.0-2
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-illi committed Jan 11, 2024
1 parent 94600a5 commit a5a3d44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hitobito
Submodule hitobito updated 62 files
+1 −0 CHANGELOG.md
+1 −1 Gemfile.lock
+54 −0 app/controllers/blocked_controller.rb
+8 −0 app/controllers/concerns/authenticatable.rb
+2 −0 app/controllers/devise/hitobito/passwords_controller.rb
+1 −0 app/controllers/devise/hitobito/registrations_controller.rb
+6 −0 app/controllers/devise/hitobito/sessions_controller.rb
+1 −0 app/controllers/person/impersonation_controller.rb
+37 −3 app/controllers/person/security_tools_controller.rb
+112 −0 app/domain/person/block_service.rb
+9 −1 app/helpers/dropdown/people_login.rb
+6 −2 app/helpers/format_helper.rb
+3 −1 app/helpers/people_helper.rb
+6 −8 app/helpers/sheet/mailing_list.rb
+23 −0 app/helpers/tabs_helper.rb
+6 −2 app/javascript/javascripts/modules/mailing_list_labels.js.coffee
+12 −0 app/jobs/person/inactivity_block_job.rb
+13 −0 app/jobs/person/inactivity_block_warning_job.rb
+34 −0 app/mailers/person/inactivity_block_mailer.rb
+8 −0 app/models/person.rb
+13 −0 app/views/blocked/index.html.haml
+3 −0 app/views/blocked/index.json
+0 −2 app/views/mailing_lists/_actions_show.html.haml
+18 −16 app/views/mailing_lists/_attrs.html.haml
+57 −53 app/views/mailing_lists/_form.html.haml
+11 −0 app/views/mailing_lists/_form_tabs.html.haml
+52 −0 app/views/person/security_tools/index.html.haml
+4 −1 app/views/shared/_labeled.html.haml
+3 −0 app/views/subscriptions/_actions_index.html.haml
+3 −0 config/initializers/config.rb
+68 −43 config/locales/views.de.yml
+35 −35 config/locales/views.en.yml
+39 −39 config/locales/views.fr.yml
+39 −39 config/locales/views.it.yml
+3 −0 config/routes.rb
+5 −0 config/settings.yml
+42 −0 config/settings_contract.rb
+13 −0 db/migrate/20231117123807_add_inactivity_block_fields_to_people.rb
+3 −1 db/schema.rb
+113 −0 db/seeds/custom_contents.rb
+8 −0 lib/templates/wagon/spec/fixtures/custom_content/translations.yml
+21 −0 lib/templates/wagon/spec/fixtures/custom_contents.yml
+52 −0 spec/config/settings_contract_spec.rb
+44 −0 spec/controllers/blocked_controller_spec.rb
+6 −0 spec/controllers/devise/hitobito/sessions_controller_spec.rb
+73 −0 spec/controllers/person/security_tools_controller_spec.rb
+260 −0 spec/domain/person/block_service_spec.rb
+14 −8 spec/features/mailing_lists_spec.rb
+19 −0 spec/features/subscriptions_spec.rb
+7 −0 spec/fixtures/action_text/rich_texts.yml
+8 −0 spec/fixtures/custom_content/translations.yml
+21 −0 spec/fixtures/custom_contents.yml
+6 −0 spec/helpers/format_helper_spec.rb
+20 −0 spec/jobs/person/inactivity_block_job_spec.rb
+19 −0 spec/jobs/person/inactivity_block_warning_job_spec.rb
+20 −0 spec/mailers/person/inactivity_block_mailer_spec.rb
+1 −1 spec/models/custom_content_spec.rb
+13 −0 spec/models/person_spec.rb
+38 −0 spec/requests/blocked_person_spec.rb
+32 −0 spec/views/blocked/index.html.haml_spec.rb
+54 −0 spec/views/mailing_lists/_attrs.html.haml_spec.rb
+38 −0 spec/views/person/security_tools/index.html.haml_spec.rb

0 comments on commit a5a3d44

Please sign in to comment.