File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,6 @@ def get_session_timeout(self):
11
11
timeout_sec = (
12
12
request .env ["ir.config_parameter" ]
13
13
.sudo ()
14
- .get_param ("web_session_auto_close.timeout" , 15 )
14
+ .get_param ("web_session_auto_close.timeout" , 600 )
15
15
)
16
16
return int (timeout_sec ) * 1000
Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ class ResConfigSettings(models.TransientModel):
10
10
session_auto_close_timeout = fields .Integer (
11
11
string = "Session Auto-Close Timeout (seconds)" ,
12
12
config_parameter = "web_session_auto_close.timeout" ,
13
- default = 15 ,
13
+ default = 600 ,
14
14
)
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import {rpc} from "@web/core/network/rpc";
7
7
import { session } from "@web/session" ;
8
8
9
9
// Default session timeout in ms (will be updated from server settings)
10
- let SESSION_TIMEOUT = 15000 ;
10
+ let SESSION_TIMEOUT = 600000 ;
11
11
12
12
/**
13
13
* Get the last recorded user activity timestamp from localStorage
You can’t perform that action at this time.
0 commit comments