Skip to content

Commit

Permalink
RFE: added Share.comment and ReceivedShare.alias
Browse files Browse the repository at this point in the history
  • Loading branch information
glpatcern committed Jan 24, 2025
1 parent a5f193a commit 6c9e5af
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions cs3/sharing/collaboration/v1beta1/resources.proto
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,12 @@ message Share {
// REQUIRED.
// Last modification time of the share.
cs3.types.v1beta1.Timestamp mtime = 8;
// Optional.
// OPTIONAL.
// The expiration time of the share.
cs3.types.v1beta1.Timestamp expiration = 9;
// OPTIONAL.
// A user-defined comment for the share.
string comment = 10;
}

// The permissions for a share.
Expand All @@ -92,9 +95,13 @@ message ReceivedShare {
// REQUIRED.
// The mount point of the share.
storage.provider.v1beta1.Reference mount_point = 3;
// Optional.
// Hide share, default false
// OPTIONAL.
// Flag to hide the share, defaults to false.
bool hidden = 4;
// OPTIONAL.
// An alternate identifier to allow a recipient to rename the share.
// If missing, use the original folder name.
string alias = 5;
}

// The state of the share.
Expand Down

0 comments on commit 6c9e5af

Please sign in to comment.