mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ACA-4227] Create a generic script to check plugin status before running e2e tests by plugin name * * Added governace env check * * Added AAE plugin check * * Updated script * small improvements, add uiName parameter for the command * * Fixed comments * * Moved check-plugin script in the common place * * Added table format to show plugin status Co-authored-by: adomi <ardit.domi@alfresco.com>
13 lines
258 B
TypeScript
13 lines
258 B
TypeScript
export enum PluginTarget {
|
|
processService = 'processService',
|
|
processAutomation = 'processAutomation',
|
|
governance = 'governance'
|
|
}
|
|
|
|
export interface PluginInterface {
|
|
name: string;
|
|
host: string;
|
|
appName: string;
|
|
uiName: string;
|
|
}
|