Outlined basic route checklist
This commit is contained in:
parent
026e4c5945
commit
07c0d955e4
1 changed files with 21 additions and 0 deletions
|
|
@ -6,4 +6,25 @@ router.get('/', (req, res, next) => {
|
|||
res.render('index', { title: 'Express' });
|
||||
});
|
||||
|
||||
/*
|
||||
User
|
||||
- Create user
|
||||
- Change password
|
||||
- User Login
|
||||
- User Profile
|
||||
- Modify user profile
|
||||
|
||||
Organization
|
||||
- Create organization
|
||||
- Create organization account
|
||||
- Add people to organization
|
||||
- Remove people from organization
|
||||
|
||||
Groups
|
||||
- Create group
|
||||
- Add people to group
|
||||
- Remove people from group
|
||||
- Delete group
|
||||
*/
|
||||
|
||||
module.exports = router;
|
||||
|
|
|
|||
Reference in a new issue