Filter comments based on content, not author

This commit is contained in:
Luke Tomlinson
2021-06-24 16:50:23 -04:00
parent cce770077c
commit 75a803e008
3 changed files with 3 additions and 2 deletions

View File

@@ -2,4 +2,5 @@ import {IUser} from './user';
export interface IComment {
user: IUser;
body: string;
}