Skip to content
Snippets Groups Projects
Commit 2213b9a0 authored by Hagen Dreßler's avatar Hagen Dreßler
Browse files

Fix missing imports

parent f268874b
1 merge request!54Resolve "comment creation - creator component logic"
...@@ -3,6 +3,8 @@ import { HttpClient, HttpHeaders } from '@angular/common/http'; ...@@ -3,6 +3,8 @@ import { HttpClient, HttpHeaders } from '@angular/common/http';
import { Observable } from 'rxjs/Observable'; import { Observable } from 'rxjs/Observable';
import { Comment } from './comment';
const httpOptions = { const httpOptions = {
headers: new HttpHeaders({ 'Content-Type': 'application/json' }) headers: new HttpHeaders({ 'Content-Type': 'application/json' })
......
...@@ -3,6 +3,7 @@ import { ActivatedRoute } from '@angular/router'; ...@@ -3,6 +3,7 @@ import { ActivatedRoute } from '@angular/router';
import { Location } from '@angular/common'; import { Location } from '@angular/common';
import { Room } from '../room'; import { Room } from '../room';
import { Comment } from '../comment';
import { RoomService } from '../room.service'; import { RoomService } from '../room.service';
import { CommentService} from '../comment.service'; import { CommentService} from '../comment.service';
...@@ -34,9 +35,15 @@ export class CreateCommentComponent implements OnInit { ...@@ -34,9 +35,15 @@ export class CreateCommentComponent implements OnInit {
send(subject: string, body: string): void { send(subject: string, body: string): void {
subject = subject.trim(); subject = subject.trim();
body = body.trim(); body = body.trim();
if (!subject || !body) { return; } if (!subject || !body) {
this.commentService.addComment( { roomId: this.room.id, subject: subject, return;
body: body, creationTimestamp: Date.now() } as Comment ).subscribe(); }
this.commentService.addComment({
roomId: this.room.id,
subject: subject,
body: body,
creationTimestamp: Date.now()
} as Comment).subscribe();
} }
goBack(): void { goBack(): void {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment