Made Mission marker DB compatible
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
import { Station, User } from "../../generated/client";
|
||||
import { PublicUser } from "./User";
|
||||
|
||||
export interface MissionStationLog {
|
||||
type: "station-log";
|
||||
auto: true;
|
||||
timeStamp: string;
|
||||
data: {
|
||||
stationId: string;
|
||||
oldFMSstatus: string;
|
||||
@@ -15,9 +17,11 @@ export interface MissionStationLog {
|
||||
export interface MissionMessageLog {
|
||||
type: "message-log";
|
||||
auto: false;
|
||||
timeStamp: string;
|
||||
|
||||
data: {
|
||||
message: string;
|
||||
user: User;
|
||||
user: PublicUser;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user