aboutsummaryrefslogtreecommitdiff
path: root/clientapi/routing/logout.go
diff options
context:
space:
mode:
Diffstat (limited to 'clientapi/routing/logout.go')
-rw-r--r--clientapi/routing/logout.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/clientapi/routing/logout.go b/clientapi/routing/logout.go
index 3294fbcd..0ac9ca4a 100644
--- a/clientapi/routing/logout.go
+++ b/clientapi/routing/logout.go
@@ -26,7 +26,7 @@ import (
// Logout handles POST /logout
func Logout(
- req *http.Request, deviceDB *devices.Database, device *authtypes.Device,
+ req *http.Request, deviceDB devices.Database, device *authtypes.Device,
) util.JSONResponse {
localpart, _, err := gomatrixserverlib.SplitID('@', device.UserID)
if err != nil {
@@ -45,7 +45,7 @@ func Logout(
// LogoutAll handles POST /logout/all
func LogoutAll(
- req *http.Request, deviceDB *devices.Database, device *authtypes.Device,
+ req *http.Request, deviceDB devices.Database, device *authtypes.Device,
) util.JSONResponse {
localpart, _, err := gomatrixserverlib.SplitID('@', device.UserID)
if err != nil {