summary refs log tree commit diff
path: root/src/util/Event.ts
blob: 43c51d5cf4aa87d1a8bc113c5db8f98e40872960 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { Event, EventModel } from "fosscord-server-util";

export async function emitEvent(payload: Omit<Event, "created_at">) {
	const obj = {
		created_at: new Date(), // in seconds
		...payload,
	};

	return await new EventModel(obj).save();
}

export async function emitAuditLog(payload: any) {}