gitfoss-fork | 591d7923846fc2676369ca5b3a73771a0306021e | app/controllers/user/index.ts ∙ GitFOSS
.ts
TypeScript
(application/typescript)
import { default as getUserDashboardView } from "./getUserDashboardView";
import { default as getUserDetailsView } from "./getUserDetailsView";

const getUserSSHKeyAddView = async () => {}; // Todo: implement
const postUserSSHKeyAddAction = async () => {}; // Todo: implement

export const UserController = {
  getUserDashboardView,
  getUserDetailsView,
  getUserSSHKeyAddView,
  postUserSSHKeyAddAction,
};