682db96b7c
added update for options after stopping a poll
24 lines
1.1 KiB
TypeScript
24 lines
1.1 KiB
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { AssignmentDetailComponent } from './components/assignment-detail/assignment-detail.component';
|
|
import { AssignmentListComponent } from './components/assignment-list/assignment-list.component';
|
|
import { AssignmentPollDetailComponent } from './components/assignment-poll-detail/assignment-poll-detail.component';
|
|
import { AssignmentPollVoteComponent } from './components/assignment-poll-vote/assignment-poll-vote.component';
|
|
import { AssignmentPollComponent } from './components/assignment-poll/assignment-poll.component';
|
|
import { AssignmentsRoutingModule } from './assignments-routing.module';
|
|
import { PollsModule } from '../polls/polls.module';
|
|
import { SharedModule } from '../../shared/shared.module';
|
|
|
|
@NgModule({
|
|
imports: [CommonModule, AssignmentsRoutingModule, SharedModule, PollsModule],
|
|
declarations: [
|
|
AssignmentDetailComponent,
|
|
AssignmentListComponent,
|
|
AssignmentPollComponent,
|
|
AssignmentPollDetailComponent,
|
|
AssignmentPollVoteComponent
|
|
]
|
|
})
|
|
export class AssignmentsModule {}
|