Closed theflickerman404 closed 13 hours ago
Finished saveUser, getFiles, and userExistsByEmail methods. Their tests worked well.
I also finished the getUserByEmail method. The dropbox test worked well.
The folder structure would look like the following in the dropbox.
/
├── CSC207/
│ ├── henrik-ibsen707@gmail.com/
│ │ ├── info.txt
│ │ ├── Assignment1.pdf
│ │ └── Assignment2.pdf
│ ├── student2@example.com/
│ │ ├── info.txt
│ │ ├── Assignment1_Submission.pdf
│ │ └── Assignment2_Submission.pdf
│ └── instructor@example.com/
│ └── info.txt
├── STA257/
│ ├── henrik-ibsen707@gmail.com/
│ │ ├── info.txt
│ │
│ └── student1@example.com/
│ └── info.txt
I'm not sure what you want to return in getAllUsers, so I leave it for the moment.
the drop box data access object does not currently support the following methods:
as indicated in the project group chat, I recommend storing all user emails and other information as a text file in some format and accessing that to load the necessary data to implement the above methods