Services.yaml 784 B

1234567891011121314151617181920212223242526272829303132
  1. services:
  2. _defaults:
  3. autowire: true
  4. autoconfigure: true
  5. public: false
  6. Opentalent\OtAdmin\:
  7. resource: '../Classes/*'
  8. Opentalent\OtAdmin\Command\CreateOrganizationCommand:
  9. tags:
  10. - name: 'ot:site:create'
  11. command: 'ot:site:create'
  12. schedulable: false
  13. Opentalent\OtAdmin\Command\DeleteOrganizationCommand:
  14. tags:
  15. - name: 'ot:site:delete'
  16. command: 'ot:site:delete'
  17. schedulable: false
  18. Opentalent\OtAdmin\Command\UndeleteOrganizationCommand:
  19. tags:
  20. - name: 'ot:site:undelete'
  21. command: 'ot:site:undelete'
  22. schedulable: false
  23. Opentalent\OtAdmin\Command\ClearSiteCacheCommand:
  24. tags:
  25. - name: 'ot:site:clear-cache'
  26. command: 'ot:site:clear-cache'
  27. schedulable: true