1
0
Fork 0
chronos/README.md

38 lines
962 B
Markdown
Raw Normal View History

2017-02-28 17:29:28 +08:00
# Chronos
2017-02-28 17:02:53 +08:00
A school event planner and timetable
2017-02-28 17:29:28 +08:00
## Todo
2017-04-13 00:29:28 +08:00
- [x] Migrations
2017-02-28 17:29:28 +08:00
- [ ] Authentication
2017-04-13 00:29:28 +08:00
- [x] Global React `user`
2017-03-31 16:13:38 +08:00
- [x] OID auth client
- [ ] jwt token provider
2017-04-13 00:29:28 +08:00
- [x] auth is a choice between oidc and pass, sends token/pass to `/auth` for validation
2017-03-31 16:13:38 +08:00
- [ ] `/auth` verifies oid token or pass, generates signed jwt
- [ ] jwt taken contains user role
- [ ] hide/protect certain element
2017-04-13 00:29:28 +08:00
- [x] fake validator for jwt at protected endpoints
2017-03-31 16:13:38 +08:00
- [ ] assume user is admin
2017-04-13 00:29:28 +08:00
- [x] Create group
2017-02-28 17:29:28 +08:00
- [ ] Create one-off events
- [ ] Create attachments
- [ ] Description
- [ ] File
- [ ] Create group CCAs
2017-04-13 00:29:28 +08:00
- [ ] Create CCA schedules
2017-02-28 17:29:28 +08:00
- [ ] Create group mentor
2017-04-13 00:29:28 +08:00
- [ ] Importable timetables
2017-02-28 17:29:28 +08:00
- [ ] Display events as agenda
- [ ] Display events as calendar
- [ ] Create sample data
2017-04-06 21:20:23 +08:00
## Security Pitfalls
- Auth mechanism not verified
2017-04-12 00:14:51 +08:00
- Verification of OID tokens is done by upn being the email address
2017-04-06 21:20:23 +08:00
- Succeptable to insecure direct object references