-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
49305ce
commit 5b76029
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule hitobito
updated
14 files
+2 −1 | CHANGELOG.md | |
+76 −0 | app/domain/people/cleanup_finder.rb | |
+53 −0 | app/domain/people/destroyer.rb | |
+28 −0 | app/domain/people/minimizer.rb | |
+49 −0 | app/jobs/people/cleanup_job.rb | |
+5 −0 | app/models/event/participation.rb | |
+6 −1 | app/models/person.rb | |
+5 −0 | app/models/role.rb | |
+4 −0 | config/settings.yml | |
+10 −0 | db/migrate/20230926105011_add_minimized_at_to_people.rb | |
+10 −3 | db/schema.rb | |
+157 −0 | spec/domain/people/cleanup_finder_spec.rb | |
+133 −0 | spec/domain/people/destroyer_spec.rb | |
+15 −0 | spec/models/role_spec.rb |
Submodule hitobito_youth
updated
3 files
+26 −0 | app/domain/youth/people/cleanup_finder.rb | |
+1 −0 | lib/hitobito_youth/wagon.rb | |
+290 −0 | spec/domain/people/cleanup_finder_spec.rb |