From e2ef581e842880fb6673d22fb26d2dd329282736 Mon Sep 17 00:00:00 2001 From: default Date: Wed, 26 Apr 2023 06:37:37 +0200 Subject: [PATCH] Update lastlog.txt everytime a Bearer token is validated. --- mastoapi.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mastoapi.c b/mastoapi.c index 5d508a2..3b388a4 100644 --- a/mastoapi.c +++ b/mastoapi.c @@ -786,6 +786,10 @@ int process_auth_token(snac *snac, const xs_dict *req) if (!xs_is_null(uid) && user_open(snac, uid)) { logged_in = 1; + + /* this counts as a 'login' */ + lastlog_write(snac); + srv_debug(2, xs_fmt("mastoapi auth: valid token for user %s", uid)); } else