Skip to content

Commit

Permalink
display details on sharing panel
Browse files Browse the repository at this point in the history
Signed-off-by: Maxence Lange <maxence@nextcloud.com>
  • Loading branch information
ArtificialOwl committed Jul 6, 2017
1 parent 2c5399b commit d2cdc8c
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion core/js/sharedialogresharerinfoview.js
Expand Up @@ -84,7 +84,18 @@
undefined,
{escape: false}
);
} else {
} else if (this.model.getReshareType() === OC.Share.SHARE_TYPE_CIRCLE) {
sharedByText = t(
'core',
'Shared with you and {circle} by {owner}',
{
circle: this.model.getReshareWithDisplayName(),
owner: ownerDisplayName
},
undefined,
{escape: false}
);
} else {
sharedByText = t(
'core',
'Shared with you by {owner}',
Expand Down

0 comments on commit d2cdc8c

Please sign in to comment.