Add gravatar picture to comments

This commit is contained in:
riggraz
2019-09-30 23:28:52 +02:00
parent 4fdb71d488
commit be8f003d70
6 changed files with 25 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ interface IComment {
body: string;
parentId: number;
userFullName: string;
userEmail: string;
updatedAt: string;
}