Services.yaml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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\ResetBeUserPermsCommand:
  34. tags:
  35. - name: 'ot:site:reset-perms'
  36. command: 'ot:site:reset-perms'
  37. schedulable: true
  38. Opentalent\OtAdmin\Command\UpdateRoutingIndexCommand:
  39. tags:
  40. - name: 'ot:site:index'
  41. command: 'ot:site:index'
  42. schedulable: true
  43. Opentalent\OtAdmin\Command\GetSiteStatusCommand:
  44. tags:
  45. - name: 'ot:site:status'
  46. command: 'ot:site:status'
  47. schedulable: false
  48. Opentalent\OtAdmin\Command\AddRedirectionCommand:
  49. tags:
  50. - name: 'ot:redirection:add'
  51. command: 'ot:redirection:add'
  52. schedulable: false
  53. Opentalent\OtAdmin\Command\RemoveRedirectionCommand:
  54. tags:
  55. - name: 'ot:redirection:remove'
  56. command: 'ot:redirection:remove'
  57. schedulable: false
  58. Opentalent\OtAdmin\Command\ScanCommand:
  59. tags:
  60. - name: 'ot:scan'
  61. command: 'ot:scan'
  62. schedulable: true