mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Add includeTags to /share/id
This commit is contained in:
parent
3950deb42f
commit
4a4a3874da
1 changed files with 7 additions and 1 deletions
|
|
@ -366,10 +366,11 @@ class ShareAPIController extends OCSController {
|
|||
* @NoAdminRequired
|
||||
*
|
||||
* @param string $id
|
||||
* @param bool $includeTags
|
||||
* @return DataResponse
|
||||
* @throws OCSNotFoundException
|
||||
*/
|
||||
public function getShare(string $id): DataResponse {
|
||||
public function getShare(string $id, bool $includeTags = false): DataResponse {
|
||||
try {
|
||||
$share = $this->getShareById($id);
|
||||
} catch (ShareNotFound $e) {
|
||||
|
|
@ -379,6 +380,11 @@ class ShareAPIController extends OCSController {
|
|||
try {
|
||||
if ($this->canAccessShare($share)) {
|
||||
$share = $this->formatShare($share);
|
||||
|
||||
if ($includeTags) {
|
||||
$share = Helper::populateTags($formatted, 'file_source', \OC::$server->getTagManager());
|
||||
}
|
||||
|
||||
return new DataResponse([$share]);
|
||||
}
|
||||
} catch (NotFoundException $e) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue