Hello, I have a qewd application running with qewd-up. is there any event for session timeout? in qewd-up i am using the following code upon login event to create session which timeout after an hour. So if there is no subsequent api call for one hour the token is expired. I want to executes some code upon the session timeout. is there any way to do that? Thanks.
var session = this.sessions.create('myApp',3600);
session.authenticated = true;
return finished({
ok: true,
token: session.token
});