From 67484e9aa599172c1394db17ceafadb9bb8563d8 Mon Sep 17 00:00:00 2001 From: AlexicaWright <49636617+AlexicaWright@users.noreply.github.com> Date: Thu, 16 Jun 2022 14:39:36 +0200 Subject: [PATCH 1/3] added new URL param --- .../pages/operations/browser-url-parameters.adoc | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/docs/modules/ROOT/pages/operations/browser-url-parameters.adoc b/docs/modules/ROOT/pages/operations/browser-url-parameters.adoc index 1234e130f83..42e95a2017d 100644 --- a/docs/modules/ROOT/pages/operations/browser-url-parameters.adoc +++ b/docs/modules/ROOT/pages/operations/browser-url-parameters.adoc @@ -27,18 +27,29 @@ http://localhost:7474/browser?dbms=[connectionURL]&db=[databaseName] .Connection URL and database ==== +[source, browser URL, role=noheader] +---- +http://localhost:7474/browser?dbms=neo4j://alice@localhost:7687&db=neo4j123 +---- This pre-populates the connection frame with: * Connect URL: `neo4j://localhost:7687` * Database: `neo4j123` * Username: `alice` +==== + +It is also possible to pre-populate the authorization method. + +The syntax is: [source, browser URL, role=noheader] ---- -http://localhost:7474/browser?dbms=neo4j://alice@localhost:7687&db=neo4j123 +http://localhost:7474/browser?preselectAuthMethod=[NATIVE]|[SSO]|[NO_AUTH] ---- -==== +** `[NATIVE]` is the regular username and password and is the default setting. +** `[SSO]` allows for login with SSO. +** `[NO_AUTH]` means that no authorization is required. == Pre-populate the editor @@ -114,4 +125,3 @@ http://localhost:7474/browser?cmd=param&arg=example=>1 http://localhost:7474/browser?cmd=params&arg={example:1,foo:"bar"} ---- ==== - From 2db236f9d90514ecfad5829a08047c42fdfbd1a6 Mon Sep 17 00:00:00 2001 From: AlexicaWright <49636617+AlexicaWright@users.noreply.github.com> Date: Thu, 16 Jun 2022 14:40:31 +0200 Subject: [PATCH 2/3] updated patch version --- docs/antora.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/antora.yml b/docs/antora.yml index c84cedf3b97..3d77352898f 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -9,5 +9,5 @@ asciidoc: neo4j-version: '4.4' neo4j-version-exact: '4.4.4' neo4j-buildnumber: '4.4' - neo4j-browser-version: '4.4.3' + neo4j-browser-version: '4.4.6' docs-version: '4.4' From 004bb267f4b08f4ed974955c7d1fd8a53df0f93b Mon Sep 17 00:00:00 2001 From: AlexicaWright <49636617+AlexicaWright@users.noreply.github.com> Date: Thu, 16 Jun 2022 20:53:47 +0200 Subject: [PATCH 3/3] addressed PR comment --- docs/modules/ROOT/pages/operations/browser-url-parameters.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/operations/browser-url-parameters.adoc b/docs/modules/ROOT/pages/operations/browser-url-parameters.adoc index 42e95a2017d..0f1429a86f1 100644 --- a/docs/modules/ROOT/pages/operations/browser-url-parameters.adoc +++ b/docs/modules/ROOT/pages/operations/browser-url-parameters.adoc @@ -48,7 +48,7 @@ http://localhost:7474/browser?preselectAuthMethod=[NATIVE]|[SSO]|[NO_AUTH] ---- ** `[NATIVE]` is the regular username and password and is the default setting. -** `[SSO]` allows for login with SSO. +** `[SSO]` lets you sign in using SSO. ** `[NO_AUTH]` means that no authorization is required. == Pre-populate the editor