Skip to content
Snippets Groups Projects
  1. Jan 06, 2019
    • Dominik Seeger's avatar
      added e2e tests for exporting student data · 85378627
      Dominik Seeger authored and robinwilliam.hundt's avatar robinwilliam.hundt committed
      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
      85378627
  2. Dec 13, 2018
  3. Oct 09, 2018
  4. Oct 02, 2018
  5. Sep 30, 2018
  6. Sep 29, 2018
  7. Sep 26, 2018
  8. Aug 12, 2018
  9. Aug 10, 2018
  10. Aug 09, 2018
  11. Aug 06, 2018
  12. Aug 05, 2018
  13. May 31, 2018
  14. May 26, 2018
  15. Apr 16, 2018
  16. Apr 05, 2018
  17. Mar 16, 2018
  18. 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
  19. Feb 19, 2018
    • robinwilliam.hundt's avatar
      Comments can be deleted · 1da17e1c
      robinwilliam.hundt authored
      Fixed subscription deletion
      
      Added welcome Jumbotron with some nice info/links
      
      Some work on start page
      
      Added feedback_stage_for_user to feedback serializer
      
      This field will contain the feedback stage of the subscription for which the requesting user has created this feedback. This is needed to correctly give the choice to set the final attribute in the frontend.
      
      Fix final checkbox frontend
      
      Fix disappearing names in feedback list
      1da17e1c
  20. Feb 18, 2018
  21. Feb 17, 2018
    • 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
  22. Feb 16, 2018
    • 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
    • robinwilliam.hundt's avatar
  23. Feb 05, 2018
  24. Feb 04, 2018
    • robinwilliam.hundt's avatar
      Student page is fixed. Subscription & Feedback creation partially working · 32dd9a3f
      robinwilliam.hundt authored
      Fixed reverse query bug in Subscription model
      Fixed bug in subscription view resulting in uncaught exception
      Creating a subscription with a query/key/stage combination for which no assignments were available would result in an uncaught SubscriptionEnded exception and a 500 response to the client. Instead an error message with the status code 410_GONE is now sent.
      
      Fixed reverse query bug in Subscription model
      
      chnaged
      type_query_mapper = {
      	...
              SUBMISSION_TYPE_QUERY: 'type__title',
          }
      
      to
      type_query_mapper = {
              SUBMISSION_TYPE_QUERY: 'type__name',
          }
      
      Refactored serializer id fields and camelCase names
      
      To provide a uniform api and to save us from further work i've refactored the existing fields that used
      camelCase names to use the names specified in the models (which are kebab-case).
      Also everywhere where id's (whether normal or uuid ones) have been included in the serializers, the field names have been changed to 'pk' or '<model>_pk'. Pk will always link to the primary key of the model and will save us great pain should we decide to convert the pk's of more models to uuid's. Also we won't have to remebre a bunch of different ways of referring to the id for the frontend, it's always pk.
      I also included the pk field in all modelserializers since this will be necessary for the frontend state management.
      
      Frontend now expects pk fields and snake_case
      
      Solution is highlighted / Desc. HTML is rendered
      
      Frontend test is only manually run
      
      Added vue-notification library
      
      Inactivity detection preperly implementd
      
      Client inactivity is now properly detected. A vuex plugin is used to store the time of the last commited mutation. This roughly equals the last user interaction.
      If the users session is expired he will be redirected to the login page. Before that a dialog is displayed notifieng the user that they are about to be logged out.
      
      Added created / of_tutor info to feedback comment
      32dd9a3f
Loading