Skip to content

Commit

Permalink
fix(core): add entityTags module
Browse files Browse the repository at this point in the history
  • Loading branch information
anotherchrisberry committed May 19, 2017
1 parent 9954eb8 commit f47597c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/scripts/modules/core/src/core.module.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import { SETTINGS } from './config/settings';

import { DEPLOYMENT_STRATEGY_MODULE } from './deploymentStrategy/deploymentStrategy.module';
import { DIFF_MODULE } from './diffs';
import { ENTITY_TAGS_MODULE } from './entityTag/entityTags.module';
import { HEALTH_COUNTS_MODULE } from './healthCounts/healthCounts.module';
import { HELP_MODULE } from './help/help.module';
import { INSIGHT_NGMODULE } from './insight/insight.module';
Expand Down Expand Up @@ -77,6 +78,8 @@ module.exports = angular
require('./delivery/delivery.module'),
DIFF_MODULE,

ENTITY_TAGS_MODULE,

require('./forms/forms.module'),

HEALTH_COUNTS_MODULE,
Expand Down
14 changes: 14 additions & 0 deletions app/scripts/modules/core/src/entityTag/entityTags.module.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { module } from 'angular';

import { ADD_ENTITY_TAG_LINKS_COMPONENT } from './addEntityTagLinks.component';
import { DATA_SOURCE_ALERTS_COMPONENT } from './dataSourceAlerts.component';
import { ENTITY_SOURCE_COMPONENT } from './entitySource.component';
import { ENTITY_UI_TAGS_COMPONENT } from './entityUiTags.component';

export const ENTITY_TAGS_MODULE = 'spinnaker.core.entityTags';
module(ENTITY_TAGS_MODULE, [
ADD_ENTITY_TAG_LINKS_COMPONENT,
DATA_SOURCE_ALERTS_COMPONENT,
ENTITY_SOURCE_COMPONENT,
ENTITY_UI_TAGS_COMPONENT,
]);

0 comments on commit f47597c

Please sign in to comment.