Greetings!
I was testing one of AC features, and I have noticed a problem. My project admin page link was not displayed, and the page was not accessible on newly created project.
Apparently following condition was failing:
"conditions": [
{
"condition": "user_is_project_admin"
}
]
alternatively, I get the same problem with such condition:
"conditions": [
{
"condition": "has_project_permission",
"params": {
"permission": "ADMINISTER_PROJECTS"
}
}
]
The reason for this was lack of “Administer” role on roles settings:
The PROBLEM is that I’m logged in as a site admin, and I’m able to administer the project. All project admin pages and features are available - except the one coming from AC plugin.
Question: Should this be considered as AC problem/bug?