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 13:59:32 +0300
committerGhostkeeper <rubend@tutanota.com>2021-10-18 13:59:32 +0300
commitbf6dd443b2daeb9b916b485539e099bcd861a397 (patch)
tree878f68535346a51e6c51c9c07ba7167416bcc3e9 /cura/API
parent0378531f13b989c6fe4bc22e2fbc14cce55c1dab (diff)
Add material profile writing permission
The API needs this new scope name. Contributes to issue CURA-8609.
Diffstat (limited to 'cura/API')
-rw-r--r--cura/API/Account.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/API/Account.py b/cura/API/Account.py
index a85e2c64c5..86cd094f11 100644
--- a/cura/API/Account.py
+++ b/cura/API/Account.py
@@ -61,7 +61,7 @@ class Account(QObject):
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 " \
"library.project.read library.project.write cura.printjob.read cura.printjob.write " \
- "cura.mesh.read cura.mesh.write"
+ "cura.mesh.read cura.mesh.write cura.material.write"
def __init__(self, application: "CuraApplication", parent = None) -> None:
super().__init__(parent)