Skip to content
This repository has been archived by the owner on Feb 14, 2025. It is now read-only.

Commit

Permalink
syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ShashiSubramanya authored Feb 7, 2024
1 parent 81846d9 commit 550776e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/ROOT/pages/trusted-auth-sdk.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ function async getAuthToken {
[source,JavaScript]
----
init({
thoughtSpotHost: "https://<hostname>:<port>",
thoughtSpotHost: "<ThoughtSpot-Host-URL>",
authType: AuthType.TrustedAuthToken,
username: "<username>",
authEndpoint: "https://authenticator-server:<port>/endpoint",
Expand All @@ -154,7 +154,7 @@ init({
[source,JavaScript]
----
init({
thoughtSpotHost: <ThoughtSpot-Host-URL>
thoughtSpotHost: "<ThoughtSpot-Host-URL>",
authType: AuthType.TrustedAuthToken,
username: "<username>",
getAuthToken: () => {
Expand All @@ -169,7 +169,7 @@ init({
[source,JavaScript]
----
init({
thoughtSpotHost: "https://<hostname>:<port>",
thoughtSpotHost: "<ThoughtSpot-Host-URL>",
authType: AuthType.TrustedAuthTokenCookieless,
authEndpoint: "https://authenticator-server:<port>/endpoint",
});
Expand Down

0 comments on commit 550776e

Please sign in to comment.