- Jan 06, 2019
-
-
robinwilliam.hundt authored
-
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
-
- Sep 30, 2018
-
-
robinwilliam.hundt authored
-
- Sep 27, 2018
-
-
robinwilliam.hundt authored
-
- Aug 15, 2018
-
-
robinwilliam.hundt authored
-
- Aug 12, 2018
-
-
robinwilliam.hundt authored
Nearly completed typing the whole store!
-
- Aug 10, 2018
-
-
robinwilliam.hundt authored
-
- Aug 06, 2018
-
-
robinwilliam.hundt authored
-
robinwilliam.hundt authored
-
- Aug 05, 2018
-
-
robinwilliam.hundt authored
-
- May 26, 2018
-
-
robinwilliam.hundt authored
-
- Mar 24, 2018
-
-
Jan Maximilian Michal authored
-
- Mar 16, 2018
-
-
robinwilliam.hundt authored
-
- Feb 20, 2018
-
-
robinwilliam.hundt authored
-
- Feb 18, 2018
-
-
robinwilliam.hundt authored
Solution Syntax highlighting
-
- Feb 16, 2018
-
-
robinwilliam.hundt authored
Impplemented skip functionality when correcting Subscriptions are now deletable Added tqdm to requierements
-
- Feb 07, 2018
-
-
robinwilliam.hundt authored
Routing is ow dynmacilly handled by selector components. E.g. the LayoutSelector will render as the correct Layout depending on the logged in users role. This allows to simply route to e.g. '/home/ and the StartPageSelector will determine if StudentPage or TutorStartPage should be displayed.
-
- Feb 05, 2018
-
-
robinwilliam.hundt authored
See #90 for Problem with ExamType subscriptions
-
- Feb 04, 2018
-
-
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
-