Skip to end of banner
Go to start of banner

How To Recover Space Permissions

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Description

Have you every had a space that cannot be accessed? Even by an administrator. You know it exists, but no one has permission to see it. For instance, no one can delete it, yet you cannot create a space with the same key as Confluence says it already exists. Some symptoms of this issue are:

Not permitted to delete space with key: ...

A space already exists with key ...

We see this problem on Cloud regularly in our automated testing.

This post describes how to fix this problem.

From UI

Easy enough via the UI: Administration → Space Permissions → look for the space and find a Recover Permissions link.

Using CLI

-a renderRequest --request /admin/permissions/grantspacepermissions.action --requestParameters key=XXX --file out.html

Using GINT

...
[action: 'renderRequest', ext: 'AvoidPermissionProblem',
    space: space,
    parameters: [
        request: '/admin/permissions/grantspacepermissions.action',
        requestParameters: 'key=' + space,
        file: '', // don't need output
    ],
],
gint.getRemoveSpaceTestcase(depends: 'renderRequestAvoidPermissionProblem'), 
...


  • No labels