Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKostas Karmas <konskarm@gmail.com>2020-12-18 16:34:29 +0300
committerKostas Karmas <konskarm@gmail.com>2020-12-18 16:34:29 +0300
commit43615a57b61c2be31a439025f4bf6279b45a63a0 (patch)
tree5591a9e6c85309d55ede3982eef9b43ce4cc1225
parent430550452f80310435ba9859993f82456a24b7b8 (diff)
Change client scope in the Account
CURA-7868
-rw-r--r--cura/API/Account.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cura/API/Account.py b/cura/API/Account.py
index 15bccb71e1..d5ef2bfcb9 100644
--- a/cura/API/Account.py
+++ b/cura/API/Account.py
@@ -81,7 +81,8 @@ class Account(QObject):
CLIENT_ID="um----------------------------ultimaker_cura",
CLIENT_SCOPES="account.user.read drive.backup.read drive.backup.write packages.download "
"packages.rating.read packages.rating.write connect.cluster.read connect.cluster.write "
- "cura.printjob.read cura.printjob.write cura.mesh.read cura.mesh.write",
+ "library.project.read library.project.write cura.printjob.read cura.printjob.write "
+ "cura.mesh.read cura.mesh.write",
AUTH_DATA_PREFERENCE_KEY="general/ultimaker_auth_data",
AUTH_SUCCESS_REDIRECT="{}/app/auth-success".format(self._oauth_root),
AUTH_FAILED_REDIRECT="{}/app/auth-error".format(self._oauth_root)