...
Warning |
---|
If users are unable to view links after the config.json file is edited, make sure that the JSON is properly formatted by running the text through a JSON validator. If the JSON is valid and users are still unable to view links, have the users try clearing their browser cache. |
GlobalSearch GO
Info |
---|
Be sure to follow the initial GlobalSearch GO configuration guide. |
GlobalSearch GO also supports adding custom links to the interface via the config.json file. The layout is much the same as with GlobalSearch Web except for the top level key being different, customLinks
The file can be found at C:\inetpub\wwwroot\Square9API\public\config.json
by default.
...
Code Block |
---|
{
"hideLoginSidePanel": false,
"apiUrl": "https://localhost/square9api/api",
"viewerUrl": "https://localhost/globalsearchviewer",
"licenseManagerUrl": "https://localhost/square9web/GSWLicenseManager/",
"userManagementUrl": "https://localhost/square9web/UserManagement/",
"adminUrl": "https://localhost/square9web/#/admin/full",
"gseUrlDefault": "https://127.0.0.1:9443",
"hideBranding": false,
"authenticationProviders": {},
"enableGuestLogin": true,
"customLinks": [
{ "label": "GlobalAction" },
{ "label": "Approvals", "url": "http://example.com" },
{ "label": "Rejections", "url": "http://example.com" },
{ "label": "GlobalCapture" },
{ "label": "Scan Station", "url": "http://example.com" },
{ "label": "Validation", "url": "http://example.com" },
"---",
{ "label": "External Links" },
{ "label": "Company Intranet", "url": "http://example.com" },
{ "label": "Email", "url": "http://example.com" }
]
} |