Fix edit event cache issues

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2019-10-03 16:54:56 +02:00
parent 7412702cd8
commit 75bd7a3d75
4 changed files with 115 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
import { IParticipant } from '@/types/event.model';
import { IEvent, IParticipant } from '@/types/event.model';
export enum ICurrentUserRole {
USER = 'USER',
@@ -12,4 +12,5 @@ export interface ICurrentUser {
isLoggedIn: boolean;
role: ICurrentUserRole;
participations: IParticipant[];
drafts: IEvent[];
}