forked from cs3org/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
revad: add group support config by default
- See: cs3org/reva#1453 - Also add an empty 'ocm-providers.json' to prevent the ocmproviderauthorizer service from crashing at startup
- Loading branch information
1 parent
c2b9efb
commit f619700
Showing
2 changed files
with
151 additions
and
3 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
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 |
---|---|---|
|
@@ -78,6 +78,7 @@ configFiles: | |
[grpc.services.authprovider] | ||
[grpc.services.authregistry] | ||
[grpc.services.userprovider] | ||
[grpc.services.groupprovider] | ||
[grpc.services.usershareprovider] | ||
[grpc.services.publicshareprovider] | ||
[grpc.services.ocmcore] | ||
|
@@ -90,6 +91,7 @@ configFiles: | |
[http.services.prometheus] | ||
[http.services.ocmd] | ||
[http.services.ocdav] | ||
[http.services.ocs] | ||
users.json: | | ||
[ | ||
|
@@ -127,3 +129,148 @@ configFiles: | |
"groups": ["quantum-lovers", "philosophy-haters", "physics-lovers"] | ||
} | ||
] | ||
groups.json: | | ||
[ | ||
{ | ||
"id": { | ||
"opaque_id": "sailing-lovers", | ||
"idp": "localhost:19000" | ||
}, | ||
"group_name": "sailing-lovers", | ||
"mail": "[email protected]", | ||
"display_name": "Sailing Lovers", | ||
"gid_number": 123, | ||
"members": [ | ||
{ | ||
"id": { | ||
"opaque_id": "4c510ada-c86b-4815-8820-42cdf82c3d51", | ||
"idp": "localhost:19000" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"id": { | ||
"opaque_id": "violin-haters", | ||
"idp": "localhost:19000" | ||
}, | ||
"group_name": "violin-haters", | ||
"mail": "[email protected]", | ||
"display_name": "Violin Haters", | ||
"gid_number": 456, | ||
"members": [ | ||
{ | ||
"id": { | ||
"opaque_id": "4c510ada-c86b-4815-8820-42cdf82c3d51", | ||
"idp": "localhost:19000" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"id": { | ||
"opaque_id": "radium-lovers", | ||
"idp": "localhost:19000" | ||
}, | ||
"group_name": "radium-lovers", | ||
"mail": "[email protected]", | ||
"display_name": "Radium Lovers", | ||
"gid_number": 789, | ||
"members": [ | ||
{ | ||
"id": { | ||
"opaque_id": "f7fbf8c8-139b-4376-b307-cf0a8c2d0d9c", | ||
"idp": "localhost:19000" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"id": { | ||
"opaque_id": "polonium-lovers", | ||
"idp": "localhost:19000" | ||
}, | ||
"group_name": "polonium-lovers", | ||
"mail": "[email protected]", | ||
"display_name": "Polonium Lovers", | ||
"gid_number": 987, | ||
"members": [ | ||
{ | ||
"id": { | ||
"opaque_id": "f7fbf8c8-139b-4376-b307-cf0a8c2d0d9c", | ||
"idp": "localhost:19000" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"id": { | ||
"opaque_id": "quantum-lovers", | ||
"idp": "localhost:19000" | ||
}, | ||
"group_name": "quantum-lovers", | ||
"mail": "[email protected]", | ||
"display_name": "Quantum Lovers", | ||
"gid_number": 654, | ||
"members": [ | ||
{ | ||
"id": { | ||
"opaque_id": "932b4540-8d16-481e-8ef4-588e4b6b151c", | ||
"idp": "localhost:19000" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"id": { | ||
"opaque_id": "philosophy-haters", | ||
"idp": "localhost:19000" | ||
}, | ||
"group_name": "philosophy-haters", | ||
"mail": "[email protected]", | ||
"display_name": "Philosophy Haters", | ||
"gid_number": 321, | ||
"members": [ | ||
{ | ||
"id": { | ||
"opaque_id": "932b4540-8d16-481e-8ef4-588e4b6b151c", | ||
"idp": "localhost:19000" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"id": { | ||
"opaque_id": "physics-lovers", | ||
"idp": "localhost:19000" | ||
}, | ||
"group_name": "physics-lovers", | ||
"mail": "[email protected]", | ||
"display_name": "Physics Lovers", | ||
"gid_number": 101, | ||
"members": [ | ||
{ | ||
"id": { | ||
"opaque_id": "4c510ada-c86b-4815-8820-42cdf82c3d51", | ||
"idp": "localhost:19000" | ||
} | ||
}, | ||
{ | ||
"id": { | ||
"opaque_id": "f7fbf8c8-139b-4376-b307-cf0a8c2d0d9c", | ||
"idp": "localhost:19000" | ||
} | ||
}, | ||
{ | ||
"id": { | ||
"opaque_id": "932b4540-8d16-481e-8ef4-588e4b6b151c", | ||
"idp": "localhost:19000" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
ocm-providers.json: | | ||
[] |