Skip to content
Snippets Groups Projects
  1. Oct 10, 2019
  2. Sep 18, 2019
  3. Sep 03, 2019
  4. Aug 16, 2019
  5. Jul 02, 2019
  6. Mar 31, 2019
  7. Mar 29, 2019
  8. Mar 08, 2019
  9. Feb 03, 2019
  10. Jan 06, 2019
  11. Dec 13, 2018
  12. Oct 03, 2018
  13. 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
  14. Sep 29, 2018
  15. Aug 07, 2018
  16. Aug 05, 2018
  17. May 26, 2018
  18. Mar 24, 2018
  19. Mar 21, 2018
  20. Mar 20, 2018
  21. 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
  22. Feb 20, 2018
    • 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
  23. Feb 19, 2018
  24. Feb 18, 2018
  25. Feb 17, 2018
    • Jan Maximilian Michal's avatar
    • robinwilliam.hundt's avatar
      Feedback History · b811df9a
      robinwilliam.hundt authored
      Implemented Feedback History Table incl. search
      
      Side Note: When searching the table, should the resulting filtered arr be <= than size 10 all those submissions will be prefetched if not already present and the user is able to instantanously view the submission. NICE!
      
      Added Tests and sticky beahvior for feedback hist
      
      Inactive subscriptions are shown
      
      Added subscription refresh button
      
      Fixed jwt refresh and auto logout
      
      Added feedback link
      
      Visual cue of final status in student overview
      
      Correct Student for reviewer
      b811df9a
    • Jan Maximilian Michal's avatar
      Fixed several requirements: · a0600b98
      Jan Maximilian Michal authored
      * Reviewer feedback cannot be edited by tutors (despite assignments)
      * Tutors can always edit feedback for which they have an assignment
      * Reviewer is allowed to change anything anytime
      Verified
      a0600b98
Loading