mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-03 18:44:53 +02:00
16 lines
463 B
TypeScript
16 lines
463 B
TypeScript
|
import { Request, Response, NextFunction } from 'express';
|
||
|
import response from "@server/utils/response";
|
||
|
import HttpCode from '@server/types/HttpCode';
|
||
|
|
||
|
export async function deleteOrg(req: Request, res: Response, next: NextFunction) {
|
||
|
return res.status(HttpCode.OK).send(
|
||
|
response<null>({
|
||
|
data: null,
|
||
|
success: true,
|
||
|
error: false,
|
||
|
message: "Logged in successfully",
|
||
|
status: HttpCode.OK,
|
||
|
}),
|
||
|
);
|
||
|
}
|