From 87e8465d6a1d8355d294ee5e1cfd6da3b2f57942 Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Tue, 18 Oct 2016 19:13:48 +0200 Subject: [PATCH] refs #756, use session user object --- src/blackcore/data/authenticateduser.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/blackcore/data/authenticateduser.h b/src/blackcore/data/authenticateduser.h index b333dab30..1e877cad8 100644 --- a/src/blackcore/data/authenticateduser.h +++ b/src/blackcore/data/authenticateduser.h @@ -30,6 +30,9 @@ namespace BlackCore //! First load is synchronous static constexpr bool isPinned() { return true; } + //! Session object + static constexpr bool isSession() { return true; } + //! Cache lifetime static int timeToLive() { return 18 * 60 * 60 * 1000; } };