- [API] Added User routes (need polishing because it parses and sends sensitive data)

This commit is contained in:
Alexis
2020-05-23 21:48:27 +02:00
parent 64389a3c07
commit 08b0b94bd8
10 changed files with 794 additions and 113 deletions

View File

@@ -29,4 +29,5 @@ const server = app.listen( port, () => {console.log(`App listening on port ${por
// Routing
app.use('/api/spells', routes.spells)
app.use('/api/schools', routes.schools)
app.use('/api/schools', routes.schools)
app.use('/api/users', routes.users)