0
0
Fork 0
mirror of https://github.com/verdigado/organization_folders.git synced 2024-11-21 20:28:11 +01:00

added occ command to remove resource member

This commit is contained in:
Jonathan Treffler 2024-11-05 00:48:00 +01:00
parent b025a5d0ed
commit 6252ca26dc
2 changed files with 35 additions and 0 deletions

View file

@ -30,6 +30,7 @@
<command>OCA\OrganizationFolders\Command\Resource\UpdateResource</command>
<command>OCA\OrganizationFolders\Command\ResourceMember\CreateResourceMember</command>
<command>OCA\OrganizationFolders\Command\ResourceMember\ListResourceMembers</command>
<command>OCA\OrganizationFolders\Command\ResourceMember\RemoveResourceMember</command>
<command>OCA\OrganizationFolders\Command\OrganizationProvider\ListOrganizationProviders</command>
<command>OCA\OrganizationFolders\Command\OrganizationProvider\ListOrganizations</command>
<command>OCA\OrganizationFolders\Command\OrganizationProvider\ListOrganizationRoles</command>

View file

@ -0,0 +1,34 @@
<?php
namespace OCA\OrganizationFolders\Command\ResourceMember;
use OCP\DB\Exception;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use OCA\OrganizationFolders\Command\BaseCommand;
class RemoveResourceMember extends BaseCommand {
protected function configure(): void {
$this
->setName('organization-folders:remove-resource-member')
->setDescription('Remove a member of a resource')
->addArgument('id', InputArgument::REQUIRED, 'Id of the resource member');
}
protected function execute(InputInterface $input, OutputInterface $output): int {
$id = (int)$input->getArgument('id');
try {
$this->resourceMemberService->delete($id);
$output->writeln("done");
return 0;
} catch (Exception $e) {
$output->writeln("<error>Exception \"{$e->getMessage()}\" at {$e->getFile()} line {$e->getLine()}</error>");
return 1;
}
}
}