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
path: root/cura/API
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2021-10-18 16:15:05 +0300
committerGhostkeeper <rubend@tutanota.com>2021-10-18 16:15:05 +0300
commitc9d53cbbde38fa978351d134cebc991ade7287db (patch)
treeaf80f08ea3fb0b9d1a1a6c96c59715a9adebfc0c /cura/API
parent0d350b5f96e614b1c2652ebe52941ef390a20ebf (diff)
Renamed OAuth scope
This got renamed since the API was communicated to us. Contributes to issue CURA-8609.
Diffstat (limited to 'cura/API')
-rw-r--r--cura/API/Account.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cura/API/Account.py b/cura/API/Account.py
index 86cd094f11..f922c89977 100644
--- a/cura/API/Account.py
+++ b/cura/API/Account.py
@@ -59,9 +59,9 @@ class Account(QObject):
updatePackagesEnabledChanged = pyqtSignal(bool)
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 " \
+ "packages.rating.read packages.rating.write connect.cluster.read connect.cluster.write connect.material.write " \
"library.project.read library.project.write cura.printjob.read cura.printjob.write " \
- "cura.mesh.read cura.mesh.write cura.material.write"
+ "cura.mesh.read cura.mesh.write"
def __init__(self, application: "CuraApplication", parent = None) -> None:
super().__init__(parent)