Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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.
If you have a mysquare9.com instance please reach out to our support team to get links added to your GlobalSearch GO

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" }
	]
}

Screenshot from 2024-12-11 17-10-52.pngImage Added