Joshua Marner
Joshua Marner
[b651b05](https://github.com/opnsense/core/commit/b651b05e49eb0217d300145e6d8859f705dc6f1d) looks good to me. I haven't researched the server settings very much, except to note that when I add these different remote networks to different clients, they all seem...
Can you post up any client side javascript errors that you are getting?
Yes the issue has to do with improper `` tag settings. It's trying to automatically detect if it's in a subdirectory, but this doesn't always work. The simplest thing to...
There is currently a Dockerfile in the latest version of the repository. I'm curious as to whether that fits your needs.
The problem seems to be a race condition with the api/refresh call. If I step through the code with a debugger, it works just fine.
I "fixed" it by doing this to disable token refreshing in the updateBoards call (line 154 of board.components.ts): ``` updateBoards(): void { // this.boardService.refreshToken(() => { this.boardService.getBoards().subscribe((response: ApiResponse) => {...
I worked around the problem by commenting out lines 70 and 71 in BaseController.php (73 is probably ok to comment out as well). This prevents it from regenerating the token...
@2Belette All that is doing is refreshing the token on each request that calls `secureRoute`. The worst that it might do is cause your token to invalidate after it expires,...
@2Belette Sorry I wasn't able to respond sooner. It should be there, the function is `secureRoute` and it exists in `BaseController.php` on the current master (commit: df66f9e).
@2Belette here is the function that defines this time period: (https://github.com/kiswa/TaskBoard/blob/master/src/api/controllers/Auth.php#L220-L226) ``` public static function createJwt($userId, $mult = 1) { return JWT::encode(array( 'exp' => time() + (60 * 30) *...