6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-12-13 06:37:46 +00:00

Revert "Fix DoesNotExist error on android credentials creation"

This reverts commit a88d9cfc19.
This commit is contained in:
Régis Behmo 2020-06-18 18:00:06 +02:00
parent d9aab8b314
commit 2f8efbc656
2 changed files with 6 additions and 3 deletions

View File

@ -2,7 +2,11 @@
Note: Breaking changes between versions are indicated by "💥". Note: Breaking changes between versions are indicated by "💥".
## v10.0.1 (2020-06-17) ## Unreleased
- [Bugfix] Fix error on android user creation
## v10.0.2 (2020-06-17)
- [Bugfix] Fix crash when viewing problem in LMS - [Bugfix] Fix crash when viewing problem in LMS
- [Bugfix] Fix missing webpack-stats.json in openedx Docker image - [Bugfix] Fix missing webpack-stats.json in openedx Docker image

View File

@ -5,13 +5,12 @@ echo "Loading settings $DJANGO_SETTINGS_MODULE"
./manage.py lms migrate ./manage.py lms migrate
# Create oauth credentials for Android application # Create oauth credentials for Android application
./manage.py lms manage_user android android@openedx --staff --superuser
./manage.py lms create_dot_application \ ./manage.py lms create_dot_application \
--client-id android \ --client-id android \
--client-secret {{ ANDROID_OAUTH2_SECRET }} \ --client-secret {{ ANDROID_OAUTH2_SECRET }} \
--grant-type password \ --grant-type password \
android \ android \
android login_service_user
# Fix incorrect uploaded file path # Fix incorrect uploaded file path
if [ -d /openedx/data/uploads/ ]; then if [ -d /openedx/data/uploads/ ]; then