-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6455 from owncloud/spaces-collaborators
[full-ci] Implement people sharing for spaces
- Loading branch information
Showing
29 changed files
with
1,425 additions
and
368 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import { | ||
peopleRoleEditorFile, | ||
peopleRoleViewerFile | ||
peopleRoleViewerFile, | ||
spaceRoleEditor | ||
} from '../packages/web-app-files/src/helpers/share' | ||
|
||
export default [ | ||
|
@@ -142,5 +143,25 @@ export default [ | |
role: peopleRoleViewerFile, | ||
path: "/Neuer Ordner-'singe'", | ||
key: "collaborator-51a8aafe-cd40-4d0a-8566-87a1149b7fea" | ||
}, | ||
{ | ||
shareType: 7, | ||
id: "f5c28709-b921-4ec8-b39a-4c243709b514", | ||
collaborator: { | ||
name: "einstein", | ||
displayName: "Albert Einstein", | ||
additionalInfo: "[email protected]" | ||
}, | ||
owner: { | ||
name: "admin", | ||
displayName: "Admin", | ||
additionalInfo: "[email protected]" | ||
}, | ||
fileOwner: { | ||
name: "admin", | ||
displayName: "Admin", | ||
additionalInfo: "[email protected]" | ||
}, | ||
role: spaceRoleEditor | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Enhancement: Implement people sharing for spaces | ||
|
||
Spaces can now be shared with other people. This change specifically includes: | ||
|
||
* listing all members who have access to a space (possible for all space members) | ||
* adding members to a space and giving them dedicated roles (possible for managers only) | ||
* editing the role of members (possible for managers only) | ||
* removing members from a space (possible for managers only) | ||
|
||
https://github.com/owncloud/web/pull/6455 | ||
https://github.com/owncloud/web/issues/6283 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.