From bf6dd443b2daeb9b916b485539e099bcd861a397 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 18 Oct 2021 12:59:32 +0200 Subject: [PATCH] Add material profile writing permission The API needs this new scope name. Contributes to issue CURA-8609. --- cura/API/Account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)