Skip to content

Commit f8d4e0e

Browse files
committed
Added lesson 7
1 parent 35523cf commit f8d4e0e

40 files changed

+29916
-0
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@
7373
- 🔗 [express-async-handler](https://www.npmjs.com/package/express-async-handler)
7474
- 🔗 [bcrypt](https://www.npmjs.com/package/bcrypt)
7575

76+
### ⚙ Tools:
77+
- 🔗 [React Dev Tools Extension for Chrome](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi)
78+
- 🔗 [Redux Devtools](https://github.com/reduxjs/redux-devtools)
79+
7680
### ⚙ VS Code Extensions I Use:
7781
- 🔗 [ES7 React JS Snippets Extension](https://marketplace.visualstudio.com/items?itemName=dsznajder.es7-react-js-snippets)
7882
- 🔗 [vscode-icons VS Code Extension](https://marketplace.visualstudio.com/items?itemName=vscode-icons-team.vscode-icons)
@@ -87,3 +91,4 @@
8791
- 🔗 [Chapter 4 - MERN Controllers](https://github.com/gitdagray/mern_stack_course/tree/main/lesson_04)
8892
- 🔗 [Chapter 5 - MERN React](https://github.com/gitdagray/mern_stack_course/tree/main/lesson_05-frontend)
8993
- 🔗 [Chapter 6 - MERN Redux & RTK Query](https://github.com/gitdagray/mern_stack_course/tree/main/lesson_06-frontend)
94+
- 🔗 [Chapter 7 - MERN Forms with Redux & RTK Query](https://github.com/gitdagray/mern_stack_course/tree/main/lesson_07-frontend)

lesson_07-frontend/.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

lesson_07-frontend/UserStories.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# User Stories for techNotes
2+
3+
1. [ ] Replace current sticky note system
4+
2. [x] Add a public facing page with basic contact info
5+
3. [ ] Add an employee login to the notes app
6+
4. [x] Provide a welcome page after login
7+
5. [ ] Provide easy navigation
8+
6. [ ] Display current user and assigned role
9+
7. [ ] Provide a logout option
10+
8. [ ] Require users to login at least once per week
11+
9. [ ] Provide a way to remove employee access asap if needed
12+
10. [ ] Notes are assigned to specific employees
13+
11. [ ] Notes have a ticket #, title, note body, created & updated dates
14+
12. [ ] Notes are either OPEN or COMPLETED
15+
13. [ ] Users can be Employees, Managers, or Admins
16+
14. [ ] Notes can only be deleted by Managers or Admins
17+
15. [ ] Anyone can create a note (when customer checks-in)
18+
16. [ ] Employees can only view and edit their assigned notes
19+
17. [ ] Managers and Admins can view, edit, and delete all notes
20+
18. [ ] Only Managers and Admins can access User Settings
21+
19. [ ] Only Managers and Admins can create new users
22+
20. [ ] Desktop mode is most important but should be available in mobile

0 commit comments

Comments
 (0)