From dbce6e531dbebd7e393073d08d4b5c7a11ee1432 Mon Sep 17 00:00:00 2001 From: jobol Date: Thu, 9 Nov 2017 11:31:48 +0100 Subject: Remove 'login' Signed-off-by: jobol --- agl-identity-service/src/agl-identity-binding.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/agl-identity-service/src/agl-identity-binding.c b/agl-identity-service/src/agl-identity-binding.c index 97e1e37..afb815d 100644 --- a/agl-identity-service/src/agl-identity-binding.c +++ b/agl-identity-service/src/agl-identity-binding.c @@ -171,11 +171,6 @@ static void unsubscribe (struct afb_req request) afb_req_success(request, NULL, NULL); } -static void login (struct afb_req request) -{ - afb_req_fail(request, "not-implemented-yet", NULL); -} - static void logout (struct afb_req request) { do_logout(); @@ -213,7 +208,6 @@ static const struct afb_verb_v2 verbs[]= { {"subscribe" , subscribe , NULL, "subscribe to events" , AFB_SESSION_NONE }, {"unsubscribe", unsubscribe , NULL, "unsubscribe to events" , AFB_SESSION_NONE }, - {"login" , login , NULL, "log a user in" , AFB_SESSION_NONE }, {"logout" , logout , NULL, "log the current user out", AFB_SESSION_NONE }, {"get" , get , NULL, "get data" , AFB_SESSION_NONE }, {NULL} -- cgit 1.2.3-korg