diff options
author | Joas Schilling <coding@schilljs.com> | 2022-05-03 07:20:46 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-05-03 12:51:23 +0200 |
commit | 6e4d721278e886710032a132e2df50626836be7a (patch) | |
tree | 1ea32587074d546a3e6271eee7af50f00d1100d9 /core/Controller | |
parent | fc826e98115b510313ddacbf6fef4ce8d041e373 (diff) | |
download | nextcloud-server-6e4d721278e886710032a132e2df50626836be7a.tar.gz nextcloud-server-6e4d721278e886710032a132e2df50626836be7a.zip |
Expose shareWithDisplayNameUnique also on autocomplete endpoint
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/Controller')
-rw-r--r-- | core/Controller/AutoCompleteController.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/Controller/AutoCompleteController.php b/core/Controller/AutoCompleteController.php index 6cbca91ec0f..9f0e43dedd6 100644 --- a/core/Controller/AutoCompleteController.php +++ b/core/Controller/AutoCompleteController.php @@ -118,6 +118,7 @@ class AutoCompleteController extends Controller { 'source' => $type, 'status' => $result['status'] ?? '', 'subline' => $result['subline'] ?? '', + 'shareWithDisplayNameUnique' => $result['shareWithDisplayNameUnique'] ?? '', ]; } } |