Skip to content
Snippets Groups Projects
Select Git revision
  • 351d290ddc09756db0bc17f35b219dfc32befbfc
  • master default protected
2 results

routes.js

Blame
  • routes.js 180 B
    const AuthenticationController = require('./controllers/AuthenticationController')
    
    module.exports = (app) => {
    
        app.post('/register',
        AuthenticationController.register)
    }