blob: dec19b32d645823d8aa9b9ad08be67fa9f8555cd [file] [log] [blame]
Issam E. Maghni0ef4a362022-10-05 23:20:16 +00001/*
2 * Copyright (C) 2022 Savoir-faire Linux Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation; either version 3 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
13 *
14 * You should have received a copy of the GNU Affero General Public
15 * License along with this program. If not, see
16 * <https://www.gnu.org/licenses/>.
17 */
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040018import { Router } from 'express';
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000019import asyncHandler from 'express-async-handler';
20import { Service } from 'typedi';
21
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040022import { StatusCode } from '../constants.js';
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000023
24@Service()
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040025class AuthRouter {
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000026 async build() {
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040027 const router = Router();
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000028
29 router.post(
30 '/new-account',
31 asyncHandler(async (_req, res, _next) => {
32 await Promise.resolve(42);
33 res.sendStatus(StatusCode.NOT_IMPLEMENTED);
34 })
35 );
36
37 router.post(
38 '/login',
39 asyncHandler(async (_req, res, _next) => {
40 await Promise.resolve(42);
41 res.sendStatus(StatusCode.NOT_IMPLEMENTED);
42 })
43 );
44
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040045 return router;
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000046 }
47}
48
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040049export { AuthRouter };