Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/schemas/entities/group_group_link.json')
-rw-r--r--spec/fixtures/api/schemas/entities/group_group_link.json40
1 files changed, 0 insertions, 40 deletions
diff --git a/spec/fixtures/api/schemas/entities/group_group_link.json b/spec/fixtures/api/schemas/entities/group_group_link.json
deleted file mode 100644
index bf94bbb3ce4..00000000000
--- a/spec/fixtures/api/schemas/entities/group_group_link.json
+++ /dev/null
@@ -1,40 +0,0 @@
-{
- "type": "object",
- "required": [
- "id",
- "created_at",
- "expires_at",
- "can_update",
- "can_remove",
- "access_level",
- "valid_roles"
- ],
- "properties": {
- "id": { "type": "integer" },
- "created_at": { "type": "date-time" },
- "expires_at": { "type": ["date-time", "null"] },
- "can_update": { "type": "boolean" },
- "can_remove": { "type": "boolean" },
- "access_level": {
- "type": "object",
- "required": ["integer_value", "string_value"],
- "properties": {
- "integer_value": { "type": "integer" },
- "string_value": { "type": "string" }
- }
- },
- "valid_roles": { "type": "object" },
- "shared_with_group": {
- "type": "object",
- "required": ["id", "name", "full_name", "full_path", "avatar_url", "web_url"],
- "properties": {
- "id": { "type": "integer" },
- "name": { "type": "string" },
- "full_name": { "type": "string" },
- "full_path": { "type": "string" },
- "avatar_url": { "type": ["string", "null"] },
- "web_url": { "type": "string" }
- }
- }
- }
-}