skailan-core
Version:
Servicio de autenticación y multitenancy para Skailan.
8 lines • 775 B
TypeScript
import { Request, Response } from "express";
export declare const register: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
export declare const login: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
export declare const getOrganizations: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
export declare const switchOrganization: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
export declare const requestPasswordReset: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
export declare const resetPassword: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
//# sourceMappingURL=authController.d.ts.map