Skip to content
Snippets Groups Projects
  1. Feb 03, 2019
  2. Jan 06, 2019
  3. Dec 13, 2018
  4. Dec 06, 2018
  5. Oct 09, 2018
  6. Oct 03, 2018
  7. Oct 02, 2018
  8. Oct 01, 2018
  9. Sep 30, 2018
    • robinwilliam.hundt's avatar
      Student passwords can now be set when exporting · c2c45ecc
      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.
      c2c45ecc
  10. Sep 29, 2018
  11. Aug 14, 2018
  12. Aug 12, 2018
  13. Aug 09, 2018
  14. Aug 07, 2018
  15. Aug 05, 2018
  16. Jun 01, 2018
  17. May 31, 2018
  18. May 26, 2018
  19. Apr 16, 2018
  20. Mar 24, 2018
  21. Mar 21, 2018
  22. Mar 20, 2018
  23. 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
  24. 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
Loading