Skip to content
Snippets Groups Projects
Unverified Commit c1e6a596 authored by Morris Jobke's avatar Morris Jobke
Browse files

Return true in the dummy backend for successful display name change


Signed-off-by: default avatarMorris Jobke <hey@morrisjobke.de>
parent 9a5ca231
No related branches found
No related tags found
No related merge requests found
...@@ -164,6 +164,7 @@ class Dummy extends Backend implements \OCP\IUserBackend { ...@@ -164,6 +164,7 @@ class Dummy extends Backend implements \OCP\IUserBackend {
public function setDisplayName($uid, $displayName) { public function setDisplayName($uid, $displayName) {
$this->displayNames[$uid] = $displayName; $this->displayNames[$uid] = $displayName;
return true;
} }
public function getDisplayName($uid) { public function getDisplayName($uid) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment