Onboarding
Merge request reports
Activity
added 2 commits
added 12 commits
-
0aaf854a...57724b73 - 9 commits from branch
develop
- 7d392d04 - Merge branch 'develop' into onboarding
- 34be2f9b - document intro and unuesed migrations
- c5143e83 - refactor onboarding
Toggle commit list-
0aaf854a...57724b73 - 9 commits from branch
added 2 commits
added 3 commits
added 2 commits
173 <script type="text/javascript"> 174 175 const onboarding = "{{ onboarding }}"; 176 if (onboarding== "True" && !onboarding_document) 177 { 178 179 document_intro.start(); 180 document_intro.onexit(function() { 181 userProfile.set('onboarding_document',true); 182 exitonboarding(); 183 }); 184 185 document_intro.oncomplete(function() { 186 userProfile.set('onboarding_document',true); 187 exitonboarding(); 188 var images_url = "{% url 'document-images' pk=document.pk %}"; changed this line in version 10 of the diff
Can you rename the api/users/ endpoint it's misleading to maybe api/user/ and change it to just the current user information (right now it just crashes when doing a get).
Also check if it's straightforward to add a 'reset help' button in the profile, that would erase the userProfile onboarding and user.onboarding values.
And check what is still relevant in #294 (closed)Edited by Robin Tissotadded 2 commits
added 1 commit
- 4eb7adbf - onboarding seperate update and create document
added 1 commit
- 37d72953 - Move around and add some messages, code cleanup.
added 1 commit
- 25be2490 - Simplifies onboarding code a lot to make it easier to add help in the future.
127 133 ]; 128 134 129 135 function exitonboarding() { 130 $.ajax({ 136 if(onboarding_document && onboarding_images && onboarding_edit && onboarding_trans && onboarding_models){ @rtissot i fixed this last week you can set false to onboarding only if all onboardings are seed or skiped
Please register or sign in to reply