- Feb 03, 2019
-
-
robinwilliam.hundt authored
-
- Jan 06, 2019
-
-
robinwilliam.hundt authored
Removed unused frontend dependency
-
robinwilliam.hundt authored
-
-
added instance export e2e test Swapped Logout button and slot postion Logout is now always a the far left e2e tests are now using one browser instance per TestClass Statistics endpoint now checks if there are submissiontypes available Fixed race cond. in e2e test and bug in stats endpoint Added function_tests to flake8 check Added id "logout" to logout button Using --cache-from in build step Increased implicit wait for e2e test
-
- Dec 13, 2018
-
-
robinwilliam.hundt authored
-
added tests for new instance export
-
- Dec 06, 2018
-
-
robinwilliam.hundt authored
-
- Oct 09, 2018
-
-
robinwilliam.hundt authored
-
- Oct 03, 2018
-
-
robinwilliam.hundt authored
-
- Oct 02, 2018
-
-
robinwilliam.hundt authored
-
- Oct 01, 2018
-
-
robinwilliam.hundt authored
-
- Sep 30, 2018
-
-
robinwilliam.hundt authored
The former student data endpoint /export/csv/ has been replaces by /export/json/ . This new endpoint exports the data as normal json. It also allows the client to send setPasswords: true as an option which will results in random passwords beign generated for all students and included in the export data.
-
- Sep 29, 2018
-
-
robinwilliam.hundt authored
Solution is no longer displayed on student page because it may contain grading information which has been changed during the grading process and would thus confuse the student
-
- Aug 14, 2018
-
-
robinwilliam.hundt authored
-
- Aug 12, 2018
-
-
robinwilliam.hundt authored
Nearly completed typing the whole store!
-
- Aug 09, 2018
-
-
robinwilliam.hundt authored
-
- Aug 07, 2018
-
-
robinwilliam.hundt authored
-
- Aug 05, 2018
-
-
robinwilliam.hundt authored
-
robinwilliam.hundt authored
-
robinwilliam.hundt authored
-
- Jun 01, 2018
-
-
robinwilliam.hundt authored
-
- May 31, 2018
-
-
robinwilliam.hundt authored
-
robinwilliam.hundt authored
-
- May 26, 2018
-
-
robinwilliam.hundt authored
Made another mistake with the tests, this commit should fix it.
-
robinwilliam.hundt authored
-
robinwilliam.hundt authored
-
robinwilliam.hundt authored
Endpoint offers detail endpoint /change_password/ Endpoint offers list endpoint /me/
-
- Apr 16, 2018
-
-
robinwilliam.hundt authored
-
- Mar 24, 2018
-
-
Jan Maximilian Michal authored
-
Jan Maximilian Michal authored
-
Jan Maximilian Michal authored
* All views (except the feedback view) do not have a N+1 issue * Some serializer method fields are now precomputed in annotations * TODO: Automate the performance tests to ensure performance stays high * Ran isort
-
- Mar 21, 2018
-
-
robinwilliam.hundt authored
-
Jan Maximilian Michal authored
-
Jan Maximilian Michal authored
* Set the STOP_ON_PASS setting in the grady/settings/instance.py * Currently uses signals and does not check if the feedback is final or not. * Feedback is validated until the end * Minor fixes in the importer
-
- Mar 20, 2018
-
-
robinwilliam.hundt authored
Also changed the length restriction of the StudentInfo.matrikel_no to 30
-
- Mar 11, 2018
-
-
robinwilliam.hundt authored
The reviewer has the option to activate and deactivate all students access via the web interface in the student overview. The corresponding endpoints are additional list routes on the student viewset. Tests are in test_reviewer_viewset.py
-
robinwilliam.hundt authored
Only Comments that are `visible_to_student=True` will be serialized. For some weird reason i had to resort to a little hack in the serializer, see the comment inside the `get_feedback_lines()` method of the serializer for context. I choose to not remove Feedback that is not final from the response of the student submissions endpoint (as outlined in #91) and will instead show a message in the frontend. This is easier to implement and potentially better for debugging in the frontend.
-
- Feb 20, 2018
-
-
robinwilliam.hundt authored
Uniform naming makes Frontend life easier
-
robinwilliam.hundt authored
The issue was that ```python response = client.post( f'/api/feedback/', { "score": 23, "of_submission": response.data['submission']['pk'], "feedback_lines": { 2: {"text": "< some string >"}, 3: {"text": "< some string >"} } } ) self.assertEqual(status.HTTP_201_CREATED, response.status_code) ``` would sometimes get the one submission that only had 2 lines (since submission distribution hasn't been randomized for long, this issue didn't come up earlier) and thus fail as it should. I changed the commented line to 1 and 2 in the POST. This should fix the issue.
-