diff options
author | aribeiro <anderson.ribeiro@est.tech> | 2020-07-02 14:42:40 +0100 |
---|---|---|
committer | Sébastien Determe <sebastien.determe@intl.att.com> | 2020-08-07 10:32:02 +0000 |
commit | 6c3e38279e219b390e79d31fe8b5c78f053a4e88 (patch) | |
tree | e997f7f34357ec78c89a4ac52a59f273b8276aad /catalog-ui/src/app/utils | |
parent | 4591db74a7b358f2bbfa9f9e47ccf365b544412b (diff) |
Add substitution filter UI support
Issue-ID: SDC-3195
Signed-off-by: aribeiro <anderson.ribeiro@est.tech>
Change-Id: Idc6301a1ab7442f8d2d59931abf0a0741cc8e410
Diffstat (limited to 'catalog-ui/src/app/utils')
-rw-r--r-- | catalog-ui/src/app/utils/constants.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/catalog-ui/src/app/utils/constants.ts b/catalog-ui/src/app/utils/constants.ts index f2efc42e44..a4bceb5ded 100644 --- a/catalog-ui/src/app/utils/constants.ts +++ b/catalog-ui/src/app/utils/constants.ts @@ -366,6 +366,10 @@ export class DEPENDENCY_EVENTS { static ON_DEPENDENCY_CHANGE = 'onDependencyStatusChange'; } +export class SUBSTITUTION_FILTER_EVENTS { + static ON_SUBSTITUTION_FILTER_CHANGE = 'onSubstitutionFilterChange'; +} + export class COMPONENT_FIELDS { static COMPONENT_INSTANCES_PROPERTIES = "componentInstancesProperties"; @@ -396,6 +400,7 @@ export class COMPONENT_FIELDS { export class SERVICE_FIELDS { static FORWARDING_PATHS = "forwardingPaths"; static NODE_FILTER = "nodeFilter"; + static SUBSTITUTION_FILTER = "substitutionFilter"; } export class API_QUERY_PARAMS { |