Services.yaml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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
  28. Opentalent\OtAdmin\Command\SetSiteDomainCommand:
  29. tags:
  30. - name: 'ot:site:setdomain'
  31. command: 'ot:site:setdomain'
  32. schedulable: true
  33. Opentalent\OtAdmin\Command\GetSiteStatusCommand:
  34. tags:
  35. - name: 'ot:site:status'
  36. command: 'ot:site:status'
  37. schedulable: false
  38. Opentalent\OtAdmin\Command\AddRedirectionCommand:
  39. tags:
  40. - name: 'ot:redirection:add'
  41. command: 'ot:redirection:add'
  42. schedulable: false
  43. Opentalent\OtAdmin\Command\RemoveRedirectionCommand:
  44. tags:
  45. - name: 'ot:redirection:remove'
  46. command: 'ot:redirection:remove'
  47. schedulable: false
  48. Opentalent\OtAdmin\Command\ScanCommand:
  49. tags:
  50. - name: 'ot:scan'
  51. command: 'ot:scan'
  52. schedulable: true