• Hello,

    I am an experienced web develper but fairly new to AAM. I am trying to get my first access policy to work, denying user role=”Candidate” the ability to read or list custom content type noo_resume.

    Here is the Policy body:
    {
    “statement”: [
    {
    “Effect”: “deny”,
    “Resource”: [
    “PostType:page:noo_resumes”,
    “role:candidate”
    ],
    “Action”: [
    “read”,
    “list”
    ]
    }
    ]
    }

    I wanted to specify the role in the policy itself to avoid having to select assignees.
    Should this be working?
    If so, what could I be missing?

    I am using the most recent version as of September 26, 2020. We use the PODs framework to create custom content types. We are using custom coded templates to both list and display single Resumes.

    Thank you.

  • The topic ‘I am trying to set up a simple Access Policy. Please rcheck for errors’ is closed to new replies.