Advertisement
Guest User

Untitled

a guest
May 20th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. app.get('/',controller.index);
  2. app.get('/login',controller.login);
  3. app.get('/profile/:id',controller.profile_by_id);
  4. app.get("/newpost",controller.newpost);
  5. app.post('/upload/profile',controller.upload_profile);
  6. app.get('/api/check/username',controller.api_check_username);
  7. app.get('/api/check/email',controller.api_check_email);
  8. app.get('/api/check/sessiontoken',controller.api_check_sessiontoken);
  9. app.get('/api/register',controller.api_register);
  10. app.get('/api/login',controller.api_login);
  11. app.get("/api/getuserinfo",controller.api_getuserinfo);
  12. app.get("/api/logout",controller.api_logout);
  13. app.post("/api/submitpost",controller.api_submitpost)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement