2017-08-02 18:50:50 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { HttpModule } from "@angular/http";
|
|
|
|
|
|
|
|
|
|
import { KanbanBoardComponent } from './kanban-board/kanban-board.component';
|
|
|
|
|
|
|
|
|
|
import { KanbanService } from './shared/kanban.service';
|
|
|
|
|
import { KanbanEntryItemComponent } from './kanban-entry-item/kanban-entry-item.component';
|
|
|
|
|
import { KanbanEntryCardComponent } from './kanban-entry-card/kanban-entry-card.component';
|
2017-08-15 16:39:19 +02:00
|
|
|
import { PriorityColorPipe } from './shared/priority-color.pipe';
|
2017-08-02 18:50:50 +02:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
HttpModule,
|
|
|
|
|
],
|
|
|
|
|
declarations: [
|
|
|
|
|
KanbanBoardComponent,
|
|
|
|
|
KanbanEntryItemComponent,
|
|
|
|
|
KanbanEntryCardComponent,
|
2017-08-15 16:39:19 +02:00
|
|
|
PriorityColorPipe,
|
2017-08-02 18:50:50 +02:00
|
|
|
],
|
|
|
|
|
providers: [
|
|
|
|
|
KanbanService,
|
|
|
|
|
],
|
|
|
|
|
exports: [],
|
|
|
|
|
})
|
|
|
|
|
export class KanbanModule {
|
|
|
|
|
}
|