Add user role management and differentiated prep time for teachers and TAs #237
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Overview
This PR implements a comprehensive user role system that differentiates between teachers, amanuenses, and hourly TAs in the nytid system. The key improvement is in prep time calculations, where teachers now receive appropriate credit for lecture preparation while TAs are compensated for assisting during lectures.
Problem
Previously, the system used a boolean
amanuensisflag to distinguish between two types of TAs. This approach had several limitations:Solution
1. User Role Enum
Introduced a three-level classification system:
2. Users Command
Added comprehensive user management through a new
userssubcommand:User roles are stored in the course configuration and automatically grant/revoke storage ACL access.
3. Differentiated Prep Time
Updated prep time calculations to reflect actual work performed:
Rationale: Teachers prepare lectures (3x factor), while TAs assist during lectures with no prep (1x factor). For other activities, teachers and amanuenses are treated the same.
Technical Implementation
Modified Files (Literate Programming Sources)
src/nytid/cli/courses.nw: Added UserRole enum and users command with add/list/rm subcommandssrc/nytid/courses/init.nw: Addedset_course_config()function for programmatic config updatessrc/nytid/signup/hr/hr.nw: Updatedprep_factor(),add_prep_time(), andtime_for_event()to accept role parametersrc/nytid/storage/init.nw: Addedadd_user()andremove_user()convenience methodssrc/nytid/cli/hr.nw: Addedget_user_role()helper function with fallback to contract detectionBackward Compatibility
The implementation maintains full backward compatibility:
UserRole.HOURLYPython API Example
Testing
Future Enhancements
This foundation enables future improvements:
References
Closes #[issue_number]
Warning
Firewall rules blocked me from connecting to one or more addresses (expand for details)
I tried to connect to the following addresses, but was blocked by firewall rules:
esm.ubuntu.com/usr/lib/apt/methods/https(dns block)If you need me to access, download, or install something from one of these locations, you can either:
Original prompt
Fixes #236
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.