Skip to content
Snippets Groups Projects
  1. Feb 21, 2019
  2. Jan 24, 2019
    • robinwilliam.hundt's avatar
      Disabled staging in CI · d852cf8e
      robinwilliam.hundt authored
      At the moment the staging server is kinda broken and the functional tests already ensure that the app is not completely broken
      d852cf8e
  3. Jan 06, 2019
    • Dominik Seeger's avatar
      added stage for frontend unit tests · 556bf7b3
      Dominik Seeger authored and robinwilliam.hundt's avatar robinwilliam.hundt committed
      556bf7b3
    • 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
  4. Oct 09, 2018
  5. Sep 29, 2018
  6. Aug 06, 2018
  7. May 18, 2018
  8. Mar 24, 2018
  9. Feb 16, 2018
  10. Feb 15, 2018
  11. 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
  12. Jan 26, 2018
  13. Jan 05, 2018
    • Jan Maximilian Michal's avatar
    • Jan Maximilian Michal's avatar
      Started with a new mechanism to assign work to tutors · a32636f9
      Jan Maximilian Michal authored
      * The mechanism proposed should work as follows:
        * Tutors can subscribe to certain submission categries (currently
          this includes exam, student or type specific submissions).
          If the set of submissions to corrent is small (student) all
          submissions of that category are reserved for that tutor.
        * A reviewer should also be able to subscribe other users (delegation)
        * A subscription contains assignments or creates them:
          * Only one assignment per user may be active.
          * No new assignments can be added to a subscription after it was
            created while another assignment is present for that subscription.
          * An assignment delegates a submission to a tutor.
          * An active assignment indicates that the tutor is working on that
            assignment
          * After an assignment was finished it is deleted (or archived).
      * Upgraded to Django 2.0
      * Closes #66, #53.
      
      * The mechanism remains partially incomplete as the progress in
        !67-create-new-model-feedbackline-and-integrate-it is blocking
        progress. Several tests for the API endpoint need to be written
        including. More validation and constraints might have to be added.
      a32636f9
  14. Dec 21, 2017
  15. Dec 18, 2017
  16. Dec 14, 2017
  17. Dec 13, 2017
  18. Dec 05, 2017
  19. Nov 30, 2017
  20. Nov 24, 2017
  21. Nov 23, 2017
  22. Nov 13, 2017
  23. Nov 09, 2017
  24. Nov 04, 2017
  25. Nov 03, 2017
  26. Nov 01, 2017
Loading