static getIframeDomain()

in monitoring/src/utils/config-builder/config-builder.ts [74:85]


	static getIframeDomain(stage: Stage): string {
		switch (stage) {
			case STAGES.PROD:
				return IframeDomainUrl.PROD;
			case STAGES.CODE:
				return IframeDomainUrl.CODE;
			case STAGES.LOCAL:
				return IframeDomainUrl.LOCAL;
			default:
				return IframeDomainUrl.CODE;
		}
	}