static getIframeDomainSecondLayer()

in monitoring/src/utils/config-builder/config-builder.ts [86:97]


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