getPermittedProjects method

Future<PermittedProjects> getPermittedProjects({
  1. required PermissionsKeysBean body,
})

Returns all the projects where the user is granted a list of project permissions.

This operation can be accessed anonymously.

Permissions required: None.

Implementation

Future<PermittedProjects> getPermittedProjects(
    {required PermissionsKeysBean body}) async {
  return PermittedProjects.fromJson(await _client.send(
    'post',
    'rest/api/3/permissions/project',
    body: body.toJson(),
  ));
}