-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Take care of trailing slashes in OCM package (#1024)
- Loading branch information
Showing
17 changed files
with
131 additions
and
41 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Bugfix: Take care of trailing slashes in OCM package | ||
|
||
Previously, we assumed that the OCM endpoints would have trailing | ||
slashes, failing in case they didn't. This PR fixes that. | ||
|
||
https://github.com/cs3org/reva/pull/1024 |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# services to enable | ||
[grpc.services.gateway] | ||
commit_share_to_storage_grant = true | ||
commit_share_to_storage_ref = true | ||
|
||
[grpc.services.storageregistry] | ||
[grpc.services.storageregistry.drivers.static] | ||
home_provider = "/home" | ||
|
||
[grpc.services.storageregistry.drivers.static.rules] | ||
"/home" = "localhost:17000" | ||
"/reva" = "localhost:18000" | ||
"123e4567-e89b-12d3-a456-426655440000" = "localhost:18000" | ||
|
||
[grpc.services.authprovider] | ||
[grpc.services.authregistry] | ||
[grpc.services.userprovider] | ||
[grpc.services.usershareprovider] | ||
[grpc.services.publicshareprovider] | ||
[grpc.services.ocmcore] | ||
[grpc.services.ocmshareprovider] | ||
[grpc.services.ocminvitemanager] | ||
[grpc.services.ocmproviderauthorizer] | ||
|
||
[http.services.datagateway] | ||
[http.services.prometheus] | ||
[http.services.ocmd] |
File renamed without changes.
File renamed without changes.
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,35 @@ | ||
[ | ||
{ | ||
"id": { | ||
"opaque_id": "4c510ada-c86b-4815-8820-42cdf82c3d51", | ||
"idp": "localhost:20080" | ||
}, | ||
"username": "einstein", | ||
"secret": "relativity", | ||
"mail": "einstein@example.org", | ||
"display_name": "Albert Einstein", | ||
"groups": ["sailing-lovers", "violin-haters", "physics-lovers"] | ||
}, | ||
{ | ||
"id": { | ||
"opaque_id": "f7fbf8c8-139b-4376-b307-cf0a8c2d0d9c", | ||
"idp": "localhost:20080" | ||
}, | ||
"username": "marie", | ||
"secret": "radioactivity", | ||
"mail": "marie@example.org", | ||
"display_name": "Marie Curie", | ||
"groups": ["radium-lovers", "polonium-lovers", "physics-lovers"] | ||
}, | ||
{ | ||
"id": { | ||
"opaque_id": "932b4540-8d16-481e-8ef4-588e4b6b151c", | ||
"idp": "localhost:20080" | ||
}, | ||
"username": "richard", | ||
"secret": "superfluidity", | ||
"mail": "richard@example.org", | ||
"display_name": "Richard Feynman", | ||
"groups": ["quantum-lovers", "philosophy-haters", "physics-lovers"] | ||
} | ||
] |
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.