Ghost/test
Kevin Ansfield c36e749820
Added support for gating content by member labels and products (#12946)
refs https://github.com/TryGhost/Team/issues/581
closes https://github.com/TryGhost/Team/issues/582

Emails can now be sent to members with specific associated labels or products by specifying an NQL string. We want to bring the same members segment feature to content by allowing `visibility` to be an NQL filter string on top of the `public/members/paid` special-case strings.

As an example it's possible to set `posts.visibility` to `label:vip` to make a post available only to those members with the `vip` label.

- removed enum validations for `visibility` so it now accepts any string or `null`
    - bumped `@tryghost/admin-api-schema` for API-level validation changes
- added nql validation to API input validators by running the visibility query against the members model
- added transform of NQL to special-case visibility values when saving post model
    - ensures there's a single way of representing "members" and "paid" where NQL gives multiple ways of representing the same segment
    - useful for keeping theme-level checks such as `{{#has visibility="paid"}}` working as expected
- updated content-gating to parse nql from post's visibility and use it to query the currently logged in member to see if there's a match
    - bumped @tryghost/members-api to include label and product data when loading member
2021-05-10 19:32:11 +01:00
..
api-acceptance Added support for gating content by member labels and products (#12946) 2021-05-10 19:32:11 +01:00
frontend-acceptance Added support for gating content by member labels and products (#12946) 2021-05-10 19:32:11 +01:00
regression Added support for gating content by member labels and products (#12946) 2021-05-10 19:32:11 +01:00
unit Added support for gating content by member labels and products (#12946) 2021-05-10 19:32:11 +01:00
utils Added support for gating content by member labels and products (#12946) 2021-05-10 19:32:11 +01:00
.eslintignore Move tests from core to root (#11700) 2020-03-30 16:26:47 +01:00
.eslintrc.js Enabled no-skipped-tests eslint rule [warn] 2021-05-07 19:24:23 +01:00
.jshintrc Move tests from core to root (#11700) 2020-03-30 16:26:47 +01:00