| 1234567891011121314151617181920212223242526272829303132 |
- services:
- _defaults:
- autowire: true
- autoconfigure: true
- public: false
- Opentalent\OtAdmin\:
- resource: '../Classes/*'
- Opentalent\OtAdmin\Command\CreateOrganizationCommand:
- tags:
- - name: 'ot:site:create'
- command: 'ot:site:create'
- schedulable: false
- Opentalent\OtAdmin\Command\DeleteOrganizationCommand:
- tags:
- - name: 'ot:site:delete'
- command: 'ot:site:delete'
- schedulable: false
- Opentalent\OtAdmin\Command\UndeleteOrganizationCommand:
- tags:
- - name: 'ot:site:undelete'
- command: 'ot:site:undelete'
- schedulable: false
- Opentalent\OtAdmin\Command\ClearSiteCacheCommand:
- tags:
- - name: 'ot:site:clear-cache'
- command: 'ot:site:clear-cache'
- schedulable: true
|