From 459396440bf35ace1046723a8efab9a9c22629bf Mon Sep 17 00:00:00 2001 From: José Bollo Date: Sat, 28 May 2016 18:52:26 +0200 Subject: improve naming of sample plugins MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I81cbb40c937bc087079d1605d163aea968bb9250 Signed-off-by: José Bollo --- test/token-websock.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/token-websock.qml b/test/token-websock.qml index d8665c71..38e59362 100644 --- a/test/token-websock.qml +++ b/test/token-websock.qml @@ -7,7 +7,7 @@ Window { property string address_str: "ws://localhost:1234/api?token=123456" property string token_str: "" - property string api_str: "token" + property string api_str: "auth" property string verb_str: "" property var msgid_enu: { "call":2, "retok":3, "reterr":4, "event":5 } property string request_str: "" @@ -91,7 +91,7 @@ Window { id: create_button text: "Create token" onClicked: { - verb_str = "create" + verb_str = "connect" request_str = '[' + msgid_enu.call + ',"99999","' + api_str+'/'+verb_str + '", ]'; if (!websocket.active) websocket.active = true @@ -115,7 +115,7 @@ Window { id: reset_button text: "Reset token" onClicked: { - verb_str = "reset" + verb_str = "logout" request_str = '[' + msgid_enu.call + ',"99999","' + api_str+'/'+verb_str + '", ]'; websocket.sendTextMessage (request_str) } -- cgit 1.2.3-korg