-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
apply default configurations for plugins when installing a plugin (if…
… the user has not already set the configuration value in question)
- Loading branch information
Andrew Jefferson
committed
Dec 11, 2019
1 parent
c75b2b2
commit 222ec67
Showing
7 changed files
with
244 additions
and
30 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
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
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 |
---|---|---|
@@ -1,7 +1,31 @@ | ||
{ | ||
"apoc": "https://neo4j-contrib.github.io/neo4j-apoc-procedures/versions.json", | ||
"streams": "https://neo4j-contrib.github.io/neo4j-streams/versions.json", | ||
"graphql": "https://neo4j-graphql.github.io/neo4j-graphql/versions.json", | ||
"graph-algorithms": "https://neo4j-contrib.github.io/neo4j-graph-algorithms/versions.json", | ||
"_testing": "http://host.testcontainers.internal:3000/versions.json" | ||
"apoc": { | ||
"versions": "https://neo4j-contrib.github.io/neo4j-apoc-procedures/versions.json", | ||
"properties": { | ||
"dbms.security.procedures.unrestricted": "apoc.*" | ||
} | ||
}, | ||
"streams": { | ||
"versions": "https://neo4j-contrib.github.io/neo4j-streams/versions.json", | ||
"properties": {} | ||
}, | ||
"graphql": { | ||
"versions": "https://neo4j-graphql.github.io/neo4j-graphql/versions.json", | ||
"properties": { | ||
"dbms.unmanaged_extension_classes": "org.neo4j.graphql=/graphql", | ||
"dbms.security.procedures.unrestricted": "graphql.*" | ||
} | ||
}, | ||
"graph-algorithms": { | ||
"versions": "https://neo4j-contrib.github.io/neo4j-graph-algorithms/versions.json", | ||
"properties": { | ||
"dbms.security.procedures.unrestricted":"algo.*" | ||
} | ||
}, | ||
"_testing": { | ||
"versions": "http://host.testcontainers.internal:3000/versions.json", | ||
"properties": { | ||
"dbms.security.procedures.unrestricted": "com.neo4j.docker.plugins.*" | ||
} | ||
} | ||
} |
Oops, something went wrong.