mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 19:16:41 +07:00
backend: initial log in dialog
This commit is contained in:
parent
6f6e6ae6d7
commit
8bba2ff1ba
8 changed files with 83 additions and 7 deletions
|
@ -2,11 +2,13 @@ const express = require('express');
|
|||
const guest = require('./auth/guest');
|
||||
const list = require('./auth/list');
|
||||
const check = require('./auth/check');
|
||||
const vk = require('./auth/social/vk');
|
||||
|
||||
const router = express.Router();
|
||||
|
||||
router.get('/', check);
|
||||
router.get('/list', list);
|
||||
router.get('/guest', guest);
|
||||
router.get('/social/vk', vk);
|
||||
|
||||
module.exports = router;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue