river-of-ebooks/config/routes.js

83 lines
3.4 KiB
JavaScript
Raw Normal View History

2018-10-16 01:45:37 +00:00
/**
* Route Mappings
* (sails.config.routes)
*
* Your routes tell Sails what to do each time it receives a request.
*
* For more information on configuring custom routes, check out:
* https://sailsjs.com/anatomy/config/routes-js
*/
module.exports.routes = {
// ╦ ╦╔═╗╔╗ ╔═╗╔═╗╔═╗╔═╗╔═╗
// ║║║║╣ ╠╩╗╠═╝╠═╣║ ╦║╣ ╚═╗
// ╚╩╝╚═╝╚═╝╩ ╩ ╩╚═╝╚═╝╚═╝
/***************************************************************************
* *
* Make the view located at `views/homepage.ejs` your home page. *
* *
* (Alternatively, remove this and add an `index.html` file in your *
* `assets` directory) *
* *
***************************************************************************/
2018-11-02 00:21:36 +00:00
'GET /': {
2018-10-29 23:35:49 +00:00
view: 'pages/index'
2018-10-16 01:45:37 +00:00
},
2018-11-02 00:21:36 +00:00
'GET /login': {
2018-10-28 22:12:48 +00:00
view: 'pages/login'
},
2018-11-02 00:21:36 +00:00
'GET /register': {
2018-10-29 22:39:29 +00:00
view: 'pages/login'
},
2018-11-02 00:21:36 +00:00
'GET /app': 'TargetController.show',
2018-10-16 01:45:37 +00:00
/***************************************************************************
* *
* More custom routes here... *
* (See https://sailsjs.com/config/routes for examples.) *
* *
* If a request to a URL doesn't match any of the routes in this file, it *
* is matched against "shadow routes" (e.g. blueprint routes). If it does *
* not match any of those, it is matched against static assets. *
* *
***************************************************************************/
// ╔═╗╔═╗╦ ╔═╗╔╗╔╔╦╗╔═╗╔═╗╦╔╗╔╔╦╗╔═╗
// ╠═╣╠═╝║ ║╣ ║║║ ║║╠═╝║ ║║║║║ ║ ╚═╗
// ╩ ╩╩ ╩ ╚═╝╝╚╝═╩╝╩ ╚═╝╩╝╚╝ ╩ ╚═╝
2018-11-02 00:21:36 +00:00
'POST /register': 'UserController.create',
'GET /logout': 'AuthController.logout',
2018-10-16 01:45:37 +00:00
2018-11-02 00:21:36 +00:00
'POST /auth/email_exists': 'AuthController.emailExists',
'POST /auth/email_available': 'AuthController.emailAvailable',
// 'POST /auth/local': 'AuthController.callback',
// 'POST /auth/local/:action': 'AuthController.callback',
'POST /auth/:provider': 'AuthController.callback',
'POST /auth/:provider/:action': 'AuthController.callback',
'GET /auth/:provider': 'AuthController.provider',
'GET /auth/:provider/callback': 'AuthController.callback',
'GET /auth/:provider/:action': 'AuthController.callback',
'POST /api/publish': 'BooksController.publish',
'GET /api/books': 'BooksController.list',
2018-11-12 22:12:16 +00:00
'GET /api/me': 'UserController.me',
2018-10-16 01:45:37 +00:00
// ╦ ╦╔═╗╔╗ ╦ ╦╔═╗╔═╗╦╔═╔═╗
// ║║║║╣ ╠╩╗╠═╣║ ║║ ║╠╩╗╚═╗
// ╚╩╝╚═╝╚═╝╩ ╩╚═╝╚═╝╩ ╩╚═╝
2018-11-12 22:12:16 +00:00
2018-10-16 01:45:37 +00:00
// ╔╦╗╦╔═╗╔═╗
// ║║║║╚═╗║
// ╩ ╩╩╚═╝╚═╝
2018-11-12 22:12:16 +00:00
2018-11-07 20:06:36 +00:00
}