From 376d5ac1f2caa658bcdf6f2176b1745bf2d6acac Mon Sep 17 00:00:00 2001 From: Greg Messner Date: Sun, 20 Aug 2017 21:23:27 -0700 Subject: [PATCH] Initial heck-in. --- .../resources/org/gitlab4j/api/approvals.json | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/test/resources/org/gitlab4j/api/approvals.json diff --git a/src/test/resources/org/gitlab4j/api/approvals.json b/src/test/resources/org/gitlab4j/api/approvals.json new file mode 100644 index 00000000..5f566784 --- /dev/null +++ b/src/test/resources/org/gitlab4j/api/approvals.json @@ -0,0 +1,35 @@ +{ + "id": 5, + "iid": 5, + "project_id": 1, + "title": "Approvals API", + "description": "Test", + "state": "opened", + "created_at": "2016-06-08T00:19:52.638Z", + "updated_at": "2016-06-08T21:20:42.470Z", + "merge_status": "can_be_merged", + "approvals_required": 2, + "approvals_missing": 1, + "approved_by": [ + { + "user": { + "name": "Administrator", + "username": "root", + "id": 1, + "state": "active", + "avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80\u0026d=identicon", + "web_url": "http://localhost:3000/u/root" + } + }, + { + "user": { + "name": "Nico Cartwright", + "username": "ryley", + "id": 2, + "state": "active", + "avatar_url": "http://www.gravatar.com/avatar/cf7ad14b34162a76d593e3affca2adca?s=80\u0026d=identicon", + "web_url": "http://localhost:3000/u/ryley" + } + } + ] +} \ No newline at end of file -- GitLab