Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
feat: Subcategory support for task allocation rule and refactors (#108)
Browse files Browse the repository at this point in the history
* feat: Subcategory support for task allocation rule and refactors

* fix: CodeSniffer

* fix: revert static analysis improvements for future ticket

* fix: cleaned up CreateTask command handler

* chore: tests

* chore: more tests

* fix: static analyis findings

* fix: refactor

* chore: olcs-transfer bump

* fix: unit tests

* fix: strict types on new trait
  • Loading branch information
jerotire authored Mar 18, 2024
1 parent 7972680 commit 6cf9481
Show file tree
Hide file tree
Showing 18 changed files with 494 additions and 385 deletions.
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions module/Api/config/module.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -647,11 +647,11 @@
'OtherLicence' => RepositoryFactory::class,
Repository\Document::class => RepositoryFactory::class,
'Correspondence' => RepositoryFactory::class,
'SystemParameter' => RepositoryFactory::class,
Repository\SystemParameter::class => RepositoryFactory::class,
'FeatureToggle' => RepositoryFactory::class,
'Stay' => RepositoryFactory::class,
'Submission' => RepositoryFactory::class,
'TaskAllocationRule' => RepositoryFactory::class,
Repository\TaskAllocationRule::class => RepositoryFactory::class,
'TaskAlphaSplit' => RepositoryFactory::class,
'IrfoPartner' => RepositoryFactory::class,
'Transaction' => RepositoryFactory::class,
Expand Down Expand Up @@ -806,6 +806,8 @@
'User' => Repository\User::class,
'Document' => Repository\Document::class,
'Cases' => Repository\Cases::class,
'SystemParameter' => Repository\SystemParameter::class,
'TaskAllocationRule' => Repository\TaskAllocationRule::class,
],
],
\Dvsa\Olcs\Api\Domain\FormControlServiceManagerFactory::CONFIG_KEY => [
Expand Down
Loading

0 comments on commit 6cf9481

Please sign in to comment.