mirror of
https://github.com/ngoduykhanh/wireguard-ui.git
synced 2025-04-19 19:59:13 +03:00
Fixed docs
This commit is contained in:
parent
a4d17ac489
commit
901a785ba5
1 changed files with 3 additions and 2 deletions
|
@ -25,7 +25,8 @@ func ValidSession(next echo.HandlerFunc) echo.HandlerFunc {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ValidSession middleware must be used before RefreshSession
|
// RefreshSession must only be used after ValidSession middleware
|
||||||
|
// RefreshSession checks if the session is eligible for the refresh, but doesn't check if it's fully valid
|
||||||
func RefreshSession(next echo.HandlerFunc) echo.HandlerFunc {
|
func RefreshSession(next echo.HandlerFunc) echo.HandlerFunc {
|
||||||
return func(c echo.Context) error {
|
return func(c echo.Context) error {
|
||||||
doRefreshSession(c)
|
doRefreshSession(c)
|
||||||
|
@ -79,7 +80,7 @@ func isValidSession(c echo.Context) bool {
|
||||||
|
|
||||||
// Refreshes a "remember me" session when the user visits web pages (not API)
|
// Refreshes a "remember me" session when the user visits web pages (not API)
|
||||||
// Session must be valid before calling this function
|
// Session must be valid before calling this function
|
||||||
// Refresh is performet at most once per 24h
|
// Refresh is performed at most once per 24h
|
||||||
func doRefreshSession(c echo.Context) {
|
func doRefreshSession(c echo.Context) {
|
||||||
if util.DisableLogin {
|
if util.DisableLogin {
|
||||||
return
|
return
|
||||||
|
|
Loading…
Add table
Reference in a new issue