17 lines
402 B
TypeScript
17 lines
402 B
TypeScript
import { Server } from "revolt.js";
|
|
|
|
export function report(object: Server) {
|
|
let type;
|
|
if (object instanceof Server) {
|
|
type = "Server";
|
|
}
|
|
|
|
window.open(
|
|
`mailto:abuse@revolt.chat?subject=${encodeURIComponent(
|
|
`${type} Report`,
|
|
)}&body=${encodeURIComponent(
|
|
`${type} ID: ${object._id}\nWrite more information here!`,
|
|
)}`,
|
|
);
|
|
}
|