From 0107f7da4e996dba209456a7fb2b591df88a6e9c Mon Sep 17 00:00:00 2001 From: murraydr Date: Wed, 25 Oct 2023 13:41:25 -0400 Subject: [PATCH] actuallySend = True more doc --- README.md | 12 +++++++++++- helperFunctions.py | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4563c39..945ddeb 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,16 @@ # Substitution-Requests -System for CSE 102 staff to request subs. +System for handling CSE 102 staff sub requests. + +The ULAs only ever interact with the Google form (https://docs.google.com/forms/d/e/1FAIpQLSfJzXo9-nKoIsOveLWelCe8Y47yryD3jPGPoYIxo8lhsZESeQ/viewform?usp=sf_link) + +This system downloads all of the forms, appends any new ones it hasn't seen yet (measured by timestamps) to its database, and pops up a GUI for selecting instructors' responses to each request. + +The system also provides graphical interfaces for various common forms of information retreival and for implementing manual changes. + +The system can also automatically send emails to the relevant person(s). + +The limitation of this system is that it doesn't run "in the background" it must be run on an instructor's PC and have the results pulled and pushed to/from Git each time. ## Installing and configuring for the first time diff --git a/helperFunctions.py b/helperFunctions.py index 8be6333..c1d5ace 100644 --- a/helperFunctions.py +++ b/helperFunctions.py @@ -415,7 +415,7 @@ def generateEmails(requestList): emails.append([recipient,subject,message]) #Send emails (or print to terminal if debugging and actuallySend == False) - sendEmails(emails,actuallySend=False) + sendEmails(emails,actuallySend=True)