diff options
author | Alexis Sánchez <aasanchez@gmail.com> | 2019-08-27 03:01:05 +0000 |
---|---|---|
committer | Evan Read <eread@gitlab.com> | 2019-08-27 03:01:05 +0000 |
commit | f8b2d63e1a251595de79145b415d95ac41f72b7f (patch) | |
tree | 542a0a3ffaacf57bb954d0dd1d94f4a7cbee71c7 /doc/api/events.md | |
parent | d6b420baffef4ac0ca1684d7a0fc00d20f026644 (diff) | |
download | gitlab-ce-f8b2d63e1a251595de79145b415d95ac41f72b7f.tar.gz |
Update doc/api/events.md
Diffstat (limited to 'doc/api/events.md')
-rw-r--r-- | doc/api/events.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/api/events.md b/doc/api/events.md index 6dca8e52f69..1cd7047b867 100644 --- a/doc/api/events.md +++ b/doc/api/events.md @@ -70,7 +70,7 @@ Parameters: Example request: -``` +```bash curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/events?target_type=issue&action=created&after=2017-01-31&before=2017-03-01 ``` @@ -275,7 +275,7 @@ Parameters: Example request: -``` +```bash curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/:project_id/events?target_type=issue&action=created&after=2017-01-31&before=2017-03-01 ``` @@ -343,8 +343,8 @@ Example response: "username": "root", "id": 1, "state": "active", - "avatar_url": "http://localhost:3000/uploads/user/avatar/1/fox_avatar.png", - "web_url": "http://localhost:3000/root" + "avatar_url": "https://gitlab.example.com/uploads/user/avatar/1/fox_avatar.png", + "web_url": "https://gitlab.example.com/root" }, "created_at": "2015-12-04T10:33:56.698Z", "system": false, @@ -357,8 +357,8 @@ Example response: "username": "root", "id": 1, "state": "active", - "avatar_url": "http://localhost:3000/uploads/user/avatar/1/fox_avatar.png", - "web_url": "http://localhost:3000/root" + "avatar_url": "https://gitlab.example.com/uploads/user/avatar/1/fox_avatar.png", + "web_url": "https://gitlab.example.com/root" }, "author_username": "root" } |