[AAE-1238] Re-enable appVersion check

This commit is contained in:
Alex Bolboșenco 2019-12-18 15:56:56 +02:00
parent ba9f14f90a
commit f4005102db

View File

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