You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CoreID/app/routing/routers/api/v1/auth.routes.js

19 lines
295 B

const auth_routes = {
prefix: '/api/v1/auth',
middleware: [
],
get: {
},
post: {
'/validate/username': ['controller::api:v1:Auth.validate_username'],
'/attempt': [ 'controller::api:v1:Auth.attempt' ],
},
}
module.exports = exports = auth_routes