Skip to content
Snippets Groups Projects
  1. Aug 05, 2018
  2. Jun 01, 2018
  3. May 31, 2018
  4. May 26, 2018
  5. Apr 16, 2018
  6. Mar 24, 2018
  7. Mar 21, 2018
  8. Mar 20, 2018
  9. Mar 11, 2018
    • robinwilliam.hundt's avatar
      Reviewer can activate/deactivate student access · 10f2a6fc
      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
      10f2a6fc
    • robinwilliam.hundt's avatar
      Added VisibleCommentFeedbackSerializer · 81ea7844
      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.
      81ea7844
  10. Feb 20, 2018
    • robinwilliam.hundt's avatar
      Changed SubmissionAssignmentSerializer `type_pk` to `type` · 9a60d63d
      robinwilliam.hundt authored
      Uniform naming makes Frontend life easier
      9a60d63d
    • robinwilliam.hundt's avatar
      Fixed randomly failing subscription test · 8ea40eca
      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.
      8ea40eca
  11. Feb 19, 2018
  12. Feb 18, 2018
  13. Feb 17, 2018
  14. Feb 16, 2018
    • Jan Maximilian Michal's avatar
    • robinwilliam.hundt's avatar
      Accommodate breaking API changes · 8a63786c
      robinwilliam.hundt authored
      Impplemented skip functionality when correcting
      
      Subscriptions are now deletable
      
      Added tqdm to requierements
      8a63786c
    • robinwilliam.hundt's avatar
      Feedback can now be updated during validation · 54941e9b
      robinwilliam.hundt authored
      Changed jwt auth endpoints
      
      `/api-token-auth/` to `/api/get-token/`
      `/api-token-refresh/` to `/api/refresh-token/`
      
      Added student list page
      
      Added submission serializer for student list view
      
      Bare student list view is now implemented for the reviewer
      He is able to view a searchable and sortable list of all students in the left pane of the window and their submissions on the right side
      
      Fixed /?#/ bug on login page
      
      Added `feedback_created`/`feedback_validated` counts to TutorSerializer
      
      Added basic tutor overview
      
      Added student overview help card
      
      When going to the student overview page, a help card is shown on the right side which is replaced when viewing a submission
      54941e9b
  15. Feb 15, 2018
Loading