mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
[AAE-1238] Re-enable appVersion check
This commit is contained in:
parent
f5b6676bcd
commit
ba9f14f90a
@ -172,11 +172,11 @@ export class FormCloudService extends BaseCloudService {
|
|||||||
* @returns Form definition
|
* @returns Form definition
|
||||||
*/
|
*/
|
||||||
getForm(appName: string, formKey: string, version?: number): Observable<any> {
|
getForm(appName: string, formKey: string, version?: number): Observable<any> {
|
||||||
const url = `${this.getBasePath(appName)}/form/v1/forms/${formKey}`;
|
let url = `${this.getBasePath(appName)}/form/v1/forms/${formKey}`;
|
||||||
|
|
||||||
// blocked by the issue AAE-1218
|
// blocked by the issue AAE-1218
|
||||||
if (version) {
|
if (version) {
|
||||||
// url += `/versions/${version}`;
|
url += `/versions/${version}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.get(url);
|
return this.get(url);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user