gitfoss-fork-fork | 27cd01b02b2d3fb35e71c5f332c1a6d572508b3f | app/controllers/auth/index.ts ∙ GitFOSS
.ts
TypeScript
(application/typescript)
import { default as getDashboardView } from "./getDashboardView";
import { default as getLoginView } from "./getLoginView";
import { default as getLogoutAction } from "./getLogoutAction";
import { default as getRegisterView } from "./getRegisterView";
import { default as postLoginAction } from "./postLoginAction";
import { default as postRegisterAction } from "./postRegisterAction";

export const AuthController = {
  getDashboardView,
  getLoginView,
  getLogoutAction,
  getRegisterView,
  postLoginAction,
  postRegisterAction,
};