Services.yaml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. services:
  2. _defaults:
  3. autowire: true
  4. autoconfigure: true
  5. public: false
  6. Opentalent\OtAdmin\:
  7. resource: '../Classes/*'
  8. Opentalent\OtAdmin\Command\UpdateSiteCommand:
  9. tags:
  10. - name: console.command
  11. command: 'ot:site:update'
  12. schedulable: false
  13. Opentalent\OtAdmin\Command\CreateSiteCommand:
  14. tags:
  15. - name: console.command
  16. command: 'ot:site:create'
  17. schedulable: false
  18. Opentalent\OtAdmin\Command\JustMakeItWorkSiteCommand:
  19. tags:
  20. - name: console.command
  21. command: 'ot:site:just-make-it-work'
  22. schedulable: false
  23. Opentalent\OtAdmin\Command\DeleteSiteCommand:
  24. tags:
  25. - name: console.command
  26. command: 'ot:site:delete'
  27. schedulable: false
  28. Opentalent\OtAdmin\Command\UndeleteSiteCommand:
  29. tags:
  30. - name: console.command
  31. command: 'ot:site:undelete'
  32. schedulable: false
  33. Opentalent\OtAdmin\Command\ClearSiteCacheCommand:
  34. tags:
  35. - name: console.command
  36. command: 'ot:site:clear-cache'
  37. schedulable: true
  38. Opentalent\OtAdmin\Command\SetSiteDomainCommand:
  39. tags:
  40. - name: console.command
  41. command: 'ot:site:setdomain'
  42. schedulable: true
  43. Opentalent\OtAdmin\Command\ResetBeUserPermsCommand:
  44. tags:
  45. - name: console.command
  46. command: 'ot:site:reset-perms'
  47. schedulable: true
  48. Opentalent\OtAdmin\Command\GetSiteStatusCommand:
  49. tags:
  50. - name: console.command
  51. command: 'ot:site:status'
  52. schedulable: false
  53. Opentalent\OtAdmin\Command\AddRedirectionCommand:
  54. tags:
  55. - name: console.command
  56. command: 'ot:redirection:add'
  57. schedulable: false
  58. Opentalent\OtAdmin\Command\RemoveRedirectionCommand:
  59. tags:
  60. - name: console.command
  61. command: 'ot:redirection:remove'
  62. schedulable: false
  63. Opentalent\OtAdmin\Command\ScanCommand:
  64. tags:
  65. - name: console.command
  66. command: 'ot:site:scan'
  67. schedulable: true
  68. Opentalent\OtAdmin\Command\DeleteUserCreatedPagesCommand:
  69. tags:
  70. - name: console.command
  71. command: 'ot:site:delete-user-created-pages'
  72. schedulable: false