impement and fix user settings

This commit is contained in:
root
2025-12-22 18:26:40 -05:00
parent d19bd16210
commit 116f664e7e
7 changed files with 69 additions and 32 deletions

View File

@@ -197,7 +197,8 @@ class UserStore
['$set' => $updates]
);
return $result->getModifiedCount() > 0;
// Return true if document was matched (exists), even if not modified
return $result->getMatchedCount() > 0;
}
}