Allow configuration of base URL for Fossa links

Signed-off-by: Linda Navarette <linda.navarette@gmail.com>
This commit is contained in:
Linda Navarette
2022-06-30 19:38:56 -04:00
committed by Linda Navarette
parent 06b6920a2c
commit 322d1ceeba
6 changed files with 78 additions and 5 deletions
+7 -1
View File
@@ -20,6 +20,12 @@ export interface Config {
* The organization id in fossa.
* @visibility frontend
*/
organizationId: string;
organizationId?: string;
/**
* The base url to use for external links (from Backstage to Fossa).
* @visibility frontend
*/
externalLinkBaseUrl?: string;
};
}