- Notetaker is restricted from removing interest in a course once they’ve expressed interest in a course AND accepted one request for that course
- Student can rescind a request to a notetaker AND the notetaker doesn’t see the initial request in their dashboard.
- notetaker accepts request and then is requested by another student in the same class
- notetaker expresses interest in one course and does not show as interested_notetaker in his/her other courses
- student has one accepted notetaker per course
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://drive.google.com/#folders/0B4iPWDqbzCMARlQtQWFNUXc5TTA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"rules": { | |
"users": { | |
"$uid": { | |
".write": "auth !== null && auth.uid === $uid", | |
".read": "auth !== null && auth.uid === $uid" | |
} | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Prefix Verb URI Pattern Controller#Action | |
root GET / home#index | |
user_omniauth_authorize GET|POST /users/auth/:provider(.:format) omniauth_callbacks#passthru {:provider=>/github/} | |
user_omniauth_callback GET|POST /users/auth/:action/callback(.:format) omniauth_callbacks#(?-mix:github) | |
new_user_session GET /sign_in(.:format) devise/sessions#new | |
destroy_user_session DELETE /sign_out(.:format) devise/sessions#destroy | |
course_assignment_milestone GET /courses/:course_id/assignments/:assignment_id/milestones/:id(.:format) milestones#show | |
course_assignments GET /courses/:course_id/assignments(.:for |