mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
review documentation (#5407)
This commit is contained in:
@@ -38,6 +38,7 @@ export class AppsProcessCloudService {
|
||||
/**
|
||||
* Gets a list of deployed apps for this user by status.
|
||||
* @param status Required status value
|
||||
* @param role to filter the apps
|
||||
* @returns The list of deployed apps
|
||||
*/
|
||||
getDeployedApplicationsByStatus(status: string, role?: string): Observable<ApplicationInstanceModel[]> {
|
||||
|
@@ -54,6 +54,7 @@ export class EditProcessFilterCloudComponent implements OnInit, OnChanges, OnDes
|
||||
@Input()
|
||||
appName: string = '';
|
||||
|
||||
/** roles to filter the apps */
|
||||
@Input()
|
||||
role: string = '';
|
||||
|
||||
@@ -295,10 +296,6 @@ export class EditProcessFilterCloudComponent implements OnInit, OnChanges, OnDes
|
||||
return this.getPropertyController(property).errors && this.getPropertyController(property).errors.invalid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return true if both filters are same
|
||||
* @param editedQuery, @param currentQuery
|
||||
*/
|
||||
compareFilters(editedQuery: ProcessFilterCloudModel, currentQuery: ProcessFilterCloudModel): boolean {
|
||||
return JSON.stringify(editedQuery).toLowerCase() === JSON.stringify(currentQuery).toLowerCase();
|
||||
}
|
||||
|
Reference in New Issue
Block a user