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
path: root/doc/api
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-05-13 13:24:44 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-05-13 13:24:44 +0400
commite0fdb4262aa8b5351fe55044b942f4ce595be25c (patch)
tree35b2cf34e9ec245c4eb3c61ea025311c33497ca3 /doc/api
parent6d65afb3c44a989f5b80353a213f40895a9c1c45 (diff)
parent61e68634033219cb9620ef11078bc90254f1b553 (diff)
Merge pull request #6823 from milgner/api_expose_project_archived_status
Expose archive status of projects in API
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/projects.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/api/projects.md b/doc/api/projects.md
index 40bcc6e2cd4..ffaba0af7fe 100644
--- a/doc/api/projects.md
+++ b/doc/api/projects.md
@@ -43,7 +43,8 @@ GET /projects
"owner_id": 1,
"path": "diaspora",
"updated_at": "2013-09-30T13: 46: 02Z"
- }
+ },
+ "archived": false
},
{
"id": 6,
@@ -78,7 +79,8 @@ GET /projects
"owner_id": 1,
"path": "brightbox",
"updated_at": "2013-09-30T13:46:02Z"
- }
+ },
+ "archived": false
}
]
```
@@ -157,7 +159,8 @@ Parameters:
"access_level": 50,
"notification_level": 3
}
- }
+ },
+ "archived": false
}
```