adding test for deleting/removing share link of project space using permission endpoint (#9233)

This commit is contained in:
nirajacharya2
2024-05-30 17:06:46 +05:45
committed by GitHub
parent 73d7f324fb
commit a5c6ea6fda
2 changed files with 24 additions and 0 deletions
@@ -1578,4 +1578,16 @@ class SharingNgContext implements Context {
);
$this->featureContext->setResponse($response);
}
/**
* @When user :user deletes the last link share of space :space using permissions endpoint of the Graph API
*
* @param string $user
* @param string $space
*
* @return void
*/
public function userDeletsTheLastLinkShareOfSpaceUsingPermissionsEndpointOfGraphApi(string $user, string $space):void {
$this->featureContext->setResponse($this->removeAccessToSpaceItem($user, 'link', $space, ''));
}
}