summaryrefslogtreecommitdiff
path: root/controller.cxx
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-18 21:15:29 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-18 21:15:29 +0800
commit56f6b67c908f0feb8d45ba92ae3abe5c7d0ab89c (patch)
tree9774e48271a264185fbda844216f632fba99d2d0 /controller.cxx
parentab313930e5ecc2bdfd01f427eab25b9d5db5ac1e (diff)
userNew is replaced by ticketNew
because we expect RT to automatically create a non-staff account for the submitter. https://rt-wiki.bestpractical.com/wiki/ManualAdministration#USERS
Diffstat (limited to 'controller.cxx')
-rw-r--r--controller.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/controller.cxx b/controller.cxx
index 335834b..d77abfa 100644
--- a/controller.cxx
+++ b/controller.cxx
@@ -19,9 +19,8 @@ Controller::Controller(QObject* parent) : QObject{parent}
, client, SLOT(logIn(QString, QString)));
connect(client, SIGNAL(logged(rtclient_user*))
, loginView, SLOT(pushProfile()));
- connect(loginView, SIGNAL(userNew(QString, QString, QString, QString))
- , client, SLOT(userNew(QString, QString, QString
- , QString)));
+ connect(loginView, SIGNAL(ticketNew(QString, QString))
+ , client, SLOT(ticketNew(QString, QString)));
connect(loginView, SIGNAL(ticketSearch(QString))
, client, SLOT(ticketSearch(QString)));