Livebeat is now able to send, store and show beats

This commit is contained in:
2020-10-23 00:39:36 +02:00
parent f722ee9595
commit 13f8437f29
52 changed files with 1948 additions and 442 deletions

6
backend/lib/request.ts Normal file
View File

@@ -0,0 +1,6 @@
import { Request } from "express";
import { IUser } from "../models/user/user.interface";
export interface LivebeatRequest extends Request {
user?: IUser
}