mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-12-06 11:22:41 +01:00
Added organization folder member occ commands
This commit is contained in:
parent
afb731e56b
commit
fb3f9836a2
5 changed files with 125 additions and 3 deletions
|
@ -6,6 +6,7 @@ use OC\Core\Command\Base;
|
|||
use OCP\IDateTimeFormatter;
|
||||
|
||||
use OCA\OrganizationFolders\Service\OrganizationFolderService;
|
||||
use OCA\OrganizationFolders\Service\OrganizationFolderMemberService;
|
||||
use OCA\OrganizationFolders\Service\ResourceService;
|
||||
use OCA\OrganizationFolders\Service\ResourceMemberService;
|
||||
use OCA\OrganizationFolders\OrganizationProvider\OrganizationProviderManager;
|
||||
|
@ -16,9 +17,10 @@ abstract class BaseCommand extends Base {
|
|||
public function __construct(
|
||||
private readonly IDateTimeFormatter $dateTimeFormatter,
|
||||
protected readonly OrganizationFolderService $organizationFolderService,
|
||||
protected ResourceService $resourceService,
|
||||
protected ResourceMemberService $resourceMemberService,
|
||||
protected OrganizationProviderManager $organizationProviderManager,
|
||||
protected readonly OrganizationFolderMemberService $organizationFolderMemberService,
|
||||
protected readonly ResourceService $resourceService,
|
||||
protected readonly ResourceMemberService $resourceMemberService,
|
||||
protected readonly OrganizationProviderManager $organizationProviderManager,
|
||||
) {
|
||||
parent::__construct();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue