-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add parseCustomAccess to access-control (#1643)
- Loading branch information
Showing
11 changed files
with
283 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
{ | ||
"releases": [{ "name": "@keystone-alpha/keystone", "type": "major" }], | ||
"dependents": [ | ||
{ | ||
"name": "@keystone-alpha/api-tests", | ||
"type": "patch", | ||
"dependencies": [ | ||
"@keystone-alpha/adapter-knex", | ||
"@keystone-alpha/adapter-mongoose", | ||
"@keystone-alpha/test-utils", | ||
"@keystone-alpha/keystone" | ||
] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/demo-project-blog", | ||
"type": "patch", | ||
"dependencies": ["@keystone-alpha/adapter-mongoose", "@keystone-alpha/keystone"] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/demo-project-meetup", | ||
"type": "patch", | ||
"dependencies": ["@keystone-alpha/adapter-mongoose", "@keystone-alpha/keystone"] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/demo-project-todo", | ||
"type": "patch", | ||
"dependencies": ["@keystone-alpha/adapter-mongoose", "@keystone-alpha/keystone"] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/adapter-knex", | ||
"type": "patch", | ||
"dependencies": ["@keystone-alpha/keystone"] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/adapter-mongoose", | ||
"type": "patch", | ||
"dependencies": ["@keystone-alpha/keystone"] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/example-projects-blank", | ||
"type": "patch", | ||
"dependencies": ["@keystone-alpha/adapter-mongoose", "@keystone-alpha/keystone"] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/example-projects-nuxt", | ||
"type": "patch", | ||
"dependencies": ["@keystone-alpha/adapter-mongoose", "@keystone-alpha/keystone"] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/example-projects-starter", | ||
"type": "patch", | ||
"dependencies": ["@keystone-alpha/adapter-mongoose", "@keystone-alpha/keystone"] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/example-projects-todo", | ||
"type": "patch", | ||
"dependencies": ["@keystone-alpha/adapter-mongoose", "@keystone-alpha/keystone"] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/test-utils", | ||
"type": "patch", | ||
"dependencies": [ | ||
"@keystone-alpha/adapter-knex", | ||
"@keystone-alpha/adapter-mongoose", | ||
"@keystone-alpha/keystone" | ||
] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/cypress-project-access-control", | ||
"type": "patch", | ||
"dependencies": ["@keystone-alpha/adapter-mongoose", "@keystone-alpha/keystone"] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/cypress-project-basic", | ||
"type": "patch", | ||
"dependencies": ["@keystone-alpha/adapter-mongoose", "@keystone-alpha/keystone"] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/cypress-project-client-validation", | ||
"type": "patch", | ||
"dependencies": ["@keystone-alpha/adapter-mongoose", "@keystone-alpha/keystone"] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/cypress-project-login", | ||
"type": "patch", | ||
"dependencies": ["@keystone-alpha/adapter-mongoose", "@keystone-alpha/keystone"] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/cypress-project-social-login", | ||
"type": "patch", | ||
"dependencies": ["@keystone-alpha/adapter-mongoose", "@keystone-alpha/keystone"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Allow passing `{ access: ...}` when calling `keystone.extendGraphQLSchema()`. The `types` argument is now a list of objects of the form `{ access: ..., type: ...}`, rather than a list of strings. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{ "releases": [{ "name": "@keystone-alpha/access-control", "type": "minor" }], "dependents": [] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Add `parseCustomAccess()` for parsing the access control directives on custom types/queries/mutations. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.