This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
2021-02-22 15:51:53 +01:00

11 lines
247 B
TypeScript

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();
}