I implement the Token-based Authentication service by using below link https://loopback.io/doc/en/lb4/Authentication-Tutorial.html.
I need a small feature that is "Increase the session expire time whenever call the service"
I set an initial session timeout is 20 minutes. but I need to reset this session timeout whenever I call the service. For Ex.
Initial session timeout is 20 minutes, I spent 5 minutes(Session timeout 15 minutes left) on a website, after that, I click a page that time I called a service, so I want to reset the session timeout 15 minutes into 20 minutes.
Every service request I reset session timeout into 20 minutes.