Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RFE: add Share.description and ReceivedShare.alias #239

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 description for the share.
string description = 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
Loading