temporary comment code (#5330)

This commit is contained in:
Maurizio Vitale
2019-12-12 17:39:56 +00:00
committed by Eugenio Romano
parent e1ff2909bd
commit ac40353e77

View File

@@ -174,9 +174,10 @@ export class FormCloudService extends BaseCloudService {
getForm(appName: string, formKey: string, version?: number): Observable<any> { getForm(appName: string, formKey: string, version?: number): Observable<any> {
let url = `${this.getBasePath(appName)}/form/v1/forms/${formKey}`; let url = `${this.getBasePath(appName)}/form/v1/forms/${formKey}`;
if (version) { // blocked by the issue AAE-1218
url += `/versions/${version}`; // if (version) {
} // url += `/versions/${version}`;
// }
return this.get(url); return this.get(url);
} }