Last fixes to the reviews

This commit is contained in:
Pieter Vander Vennet 2020-12-11 15:27:52 +01:00
parent d80037e407
commit a53c4119e5
8 changed files with 59 additions and 23 deletions

View file

@ -3,5 +3,9 @@ export interface Review {
author: string,
date: Date,
rating: number,
affiliated: boolean
affiliated: boolean,
/**
* True if the current logged in user is the creator of this comment
*/
made_by_user: boolean
}