mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 11:43:09 +02:00
[API] Fix bug
This commit is contained in:
parent
7435dfcacf
commit
3fd2a68a45
1 changed files with 6 additions and 0 deletions
|
@ -96,9 +96,15 @@ module.exports = (params) =>
|
|||
});
|
||||
|
||||
// Delete session
|
||||
|
||||
/* https://github.com/Automattic/monk/issues/178
|
||||
AuthSess.deleteOne({
|
||||
_id: session._id
|
||||
});
|
||||
*/
|
||||
AuthSess.remove({
|
||||
_id: session._id
|
||||
});
|
||||
|
||||
// Response
|
||||
res({
|
||||
|
|
Loading…
Reference in a new issue