summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJędrzej Nowacki <jedrzej.nowacki@digia.com>2013-10-30 15:22:47 +0000
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-31 16:43:18 +0100
commita3046ad6f4c5501e7a2ce8d87cf16dac4ba075a1 (patch)
tree2c7304ceab6cbec309a486a4c3662f3884f10644 /doc
parent88cfd42e3a8bd69525fa2e4fd92cd1a789f80a9d (diff)
downloadqtenginio-a3046ad6f4c5501e7a2ce8d87cf16dac4ba075a1.tar.gz
Remove backend secret concept from QtEnginio
The secret number was redundant. The change exposed flaky-ness in qml model tests so they were re-factored and expected values were updated. Change-Id: I11bbe89390be4e1d3dcec521fde3856455ed4dd9 Reviewed-by: Andras Becsi <andras.becsi@digia.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/snippets/models.qml1
-rw-r--r--doc/snippets/simple.qml1
2 files changed, 0 insertions, 2 deletions
diff --git a/doc/snippets/models.qml b/doc/snippets/models.qml
index 5420860..d14fea4 100644
--- a/doc/snippets/models.qml
+++ b/doc/snippets/models.qml
@@ -49,7 +49,6 @@ Rectangle {
Enginio {
id: client
backendId: Config.id
- backendSecret: Config.secret
onFinished: console.log("Engino request finished." + reply.data)
onError: console.log("Enginio error " + reply.errorCode + ": " + reply.errorString)
}
diff --git a/doc/snippets/simple.qml b/doc/snippets/simple.qml
index 4ff98e8..6bf3f7a 100644
--- a/doc/snippets/simple.qml
+++ b/doc/snippets/simple.qml
@@ -48,7 +48,6 @@ Rectangle {
Enginio {
id: client
backendId: "YOUR_BACKEND_ID" // from Enginio Dashboard
- backendSecret: "YOUR_BACKEND_SECRET" // from Enginio Dashboard
}
//! [client]