Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
558cabe2
Unverified
Commit
558cabe2
authored
Jul 07, 2018
by
Greg Messner
Committed by
GitHub
Jul 07, 2018
Browse files
Add Award Emoji API support (#214, #219)
parent
b89b7f02
Changes
6
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
558cabe2
...
@@ -135,6 +135,7 @@ The API has been broken up into sub APIs classes to make it easier to learn and
...
@@ -135,6 +135,7 @@ The API has been broken up into sub APIs classes to make it easier to learn and
### Available Sub APIs
### Available Sub APIs
------------------
------------------
[
AwardEmojiApi
](
#awardemojiapi
)
<br/>
[
CommitsApi
](
#commitsapi
)
<br/>
[
CommitsApi
](
#commitsapi
)
<br/>
[
DeployKeysApi
](
#deploykeysapi
)
<br/>
[
DeployKeysApi
](
#deploykeysapi
)
<br/>
[
EpicsApi
](
#epicsapi
)
<br/>
[
EpicsApi
](
#epicsapi
)
<br/>
...
@@ -165,6 +166,12 @@ The API has been broken up into sub APIs classes to make it easier to learn and
...
@@ -165,6 +166,12 @@ The API has been broken up into sub APIs classes to make it easier to learn and
### Sub API Examples
### Sub API Examples
----------------
----------------
#### AwardEmojiApi
```
java
// Get a list of AwardEmoji belonging to the specified issue (group ID = 1, issues IID = 1)
List
<
AwardEmoji
>
awardEmojis
=
gitLabApi
.
getAwardEmojiApi
().
getIssuAwardEmojis
(
1
,
1
);
```
#### CommitsApi
#### CommitsApi
```
java
```
java
// Get a list of commits associated with the specified branch that fall within the specified time window
// Get a list of commits associated with the specified branch that fall within the specified time window
...
...
src/main/java/org/gitlab4j/api/AwardEmojiApi.java
0 → 100644
View file @
558cabe2
package
org.gitlab4j.api
;
import
java.util.List
;
import
javax.ws.rs.core.GenericType
;
import
javax.ws.rs.core.Response
;
import
org.gitlab4j.api.models.AwardEmoji
;
/**
* This class implements the client side API for the GitLab Award Emoji API calls.
*
* @see <a href="https://docs.gitlab.com/ce/api/award_emoji.html">GitLab Award Emoji API Documentaion</a>
* @since v4.8.31
*/
public
class
AwardEmojiApi
extends
AbstractApi
{
public
AwardEmojiApi
(
GitLabApi
gitLabApi
)
{
super
(
gitLabApi
);
}
/**
* Get a list of award emoji for the specified issue.
*
* <pre><code>GitLab Endpoint: GET /projects/:id/issues/:issue_iid/award_emoji</code></pre>
*
* @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path
* @param issueIid the issue IID to get the award emojis for
* @return a list of AwardEmoji for the specified issue
* @throws GitLabApiException if any exception occurs
*/
public
List
<
AwardEmoji
>
getIssueAwardEmojis
(
Object
projectIdOrPath
,
Integer
issueIid
)
throws
GitLabApiException
{
Response
response
=
get
(
Response
.
Status
.
OK
,
getPageQueryParams
(
1
,
getDefaultPerPage
()),
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"issues"
,
issueIid
,
"award_emoji"
);
return
response
.
readEntity
(
new
GenericType
<
List
<
AwardEmoji
>>()
{});
}
/**
* Get a list of award emoji for the specified merge request.
*
* <pre><code>GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/award_emoji</code></pre>
*
* @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path
* @param mergeRequestIid the merge request IID to get the award emojis for
* @return a list of AwardEmoji for the specified merge request
* @throws GitLabApiException if any exception occurs
*/
public
List
<
AwardEmoji
>
getMergeRequestAwardEmojis
(
Object
projectIdOrPath
,
Integer
mergeRequestIid
)
throws
GitLabApiException
{
Response
response
=
get
(
Response
.
Status
.
OK
,
getPageQueryParams
(
1
,
getDefaultPerPage
()),
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"merge_requests"
,
mergeRequestIid
,
"award_emoji"
);
return
response
.
readEntity
(
new
GenericType
<
List
<
AwardEmoji
>>()
{});
}
/**
* Get a list of award emoji for the specified snippet.
*
* <pre><code>GitLab Endpoint: GET /projects/:id/snippets/:snippet_id/award_emoji</code></pre>
*
* @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path
* @param snippetId the snippet ID to get the award emojis for
* @return a list of AwardEmoji for the specified snippet
* @throws GitLabApiException if any exception occurs
*/
public
List
<
AwardEmoji
>
getSnippetAwardEmojis
(
Object
projectIdOrPath
,
Integer
snippetId
)
throws
GitLabApiException
{
Response
response
=
get
(
Response
.
Status
.
OK
,
getPageQueryParams
(
1
,
getDefaultPerPage
()),
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"snippets"
,
snippetId
,
"award_emoji"
);
return
response
.
readEntity
(
new
GenericType
<
List
<
AwardEmoji
>>()
{});
}
/**
* Get a list of award emoji for the specified note.
*
* <pre><code>GitLab Endpoint: GET /projects/:id/issues/:issue_iid/notes/:note_id/award_emoji</code></pre>
*
* @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path
* @param issueIid the issue IID of the issue that owns the note
* @param noteId the note ID to get the award emojis for
* @return a list of AwardEmoji for the specified note
* @throws GitLabApiException if any exception occurs
*/
public
List
<
AwardEmoji
>
getNoteAwardEmojis
(
Object
projectIdOrPath
,
Integer
issueIid
,
Integer
noteId
)
throws
GitLabApiException
{
Response
response
=
get
(
Response
.
Status
.
OK
,
getPageQueryParams
(
1
,
getDefaultPerPage
()),
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"issues"
,
issueIid
,
"notes"
,
noteId
,
"award_emoji"
);
return
response
.
readEntity
(
new
GenericType
<
List
<
AwardEmoji
>>()
{});
}
/**
* Get the specified award emoji for the specified issue.
*
* <pre><code>GitLab Endpoint: GET /projects/:id/issues/:issue_iid/award_emoji/:award_id</code></pre>
*
* @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path
* @param issueIid the issue IID to get the award emoji for
* @param awardId the ID of the award emoji to get
* @return an AwardEmoji instance for the specified award emoji
* @throws GitLabApiException if any exception occurs
*/
public
AwardEmoji
getIssueAwardEmoji
(
Object
projectIdOrPath
,
Integer
issueIid
,
Integer
awardId
)
throws
GitLabApiException
{
Response
response
=
get
(
Response
.
Status
.
OK
,
getPageQueryParams
(
1
,
getDefaultPerPage
()),
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"issues"
,
issueIid
,
"award_emoji"
,
awardId
);
return
(
response
.
readEntity
(
AwardEmoji
.
class
));
}
/**
* Get the specified award emoji for the specified merge request.
*
* <pre><code>GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/award_emoji/:award_id</code></pre>
*
* @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path
* @param mergeRequestIid the merge request IID to get the award emoji for
* @param awardId the ID of the award emoji to get
* @return an AwardEmoji instance for the specified award emoji
* @throws GitLabApiException if any exception occurs
*/
public
AwardEmoji
getMergeRequestAwardEmoji
(
Object
projectIdOrPath
,
Integer
mergeRequestIid
,
Integer
awardId
)
throws
GitLabApiException
{
Response
response
=
get
(
Response
.
Status
.
OK
,
getPageQueryParams
(
1
,
getDefaultPerPage
()),
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"merge_requests"
,
mergeRequestIid
,
"award_emoji"
,
awardId
);
return
(
response
.
readEntity
(
AwardEmoji
.
class
));
}
/**
* Get the specified award emoji for the specified snippet.
*
* <pre><code>GitLab Endpoint: GET /projects/:id/snippets/:snippet_id/award_emoji/:award_id</code></pre>
*
* @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path
* @param snippetId the snippet ID to get the award emoji for
* @param awardId the ID of the award emoji to get
* @return an AwardEmoji instance for the specified award emoji
* @throws GitLabApiException if any exception occurs
*/
public
AwardEmoji
getSnippetAwardEmoji
(
Object
projectIdOrPath
,
Integer
snippetId
,
Integer
awardId
)
throws
GitLabApiException
{
Response
response
=
get
(
Response
.
Status
.
OK
,
getPageQueryParams
(
1
,
getDefaultPerPage
()),
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"snippets"
,
snippetId
,
"award_emoji"
,
awardId
);
return
(
response
.
readEntity
(
AwardEmoji
.
class
));
}
/**
* Get the specified award emoji for the specified note.
*
* <pre><code>GitLab Endpoint: GET /projects/:id/issues/:issue_iid/notes/:note_id/award_emoji/:award_id</code></pre>
*
* @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path
* @param issueIid the issue IID of the issue that owns the note
* @param noteId the note ID to get the award emoji from
* @param awardId the ID of the award emoji to get
* @return an AwardEmoji instance for the specified award emoji
* @throws GitLabApiException if any exception occurs
*/
public
AwardEmoji
getNoteAwardEmoji
(
Object
projectIdOrPath
,
Integer
issueIid
,
Integer
noteId
,
Integer
awardId
)
throws
GitLabApiException
{
Response
response
=
get
(
Response
.
Status
.
OK
,
getPageQueryParams
(
1
,
getDefaultPerPage
()),
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"issues"
,
issueIid
,
"notes"
,
noteId
,
"award_emoji"
,
awardId
);
return
(
response
.
readEntity
(
AwardEmoji
.
class
));
}
/**
* Add an award emoji for the specified issue.
*
* <pre><code>GitLab Endpoint: POST /projects/:id/issues/:issue_iid/award_emoji</code></pre>
*
* @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path
* @param issueIid the issue IID to add the award emoji to
* @param name the name of the award emoji to add
* @return an AwardEmoji instance for the added award emoji
* @throws GitLabApiException if any exception occurs
*/
public
AwardEmoji
addIssueAwardEmoji
(
Object
projectIdOrPath
,
Integer
issueIid
,
String
name
)
throws
GitLabApiException
{
GitLabApiForm
form
=
new
GitLabApiForm
().
withParam
(
"name"
,
name
,
true
);
Response
response
=
post
(
Response
.
Status
.
CREATED
,
form
.
asMap
(),
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"issues"
,
issueIid
,
"award_emoji"
);
return
(
response
.
readEntity
(
AwardEmoji
.
class
));
}
/**
* Add an award emoji to the specified merge request.
*
* <pre><code>GitLab Endpoint: POST /projects/:id/merge_requests/:merge_request_iid/award_emoji</code></pre>
*
* @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path
* @param mergeRequestIid the merge request IID to add the award emoji to
* @param name the name of the award emoji to add
* @return an AwardEmoji instance for the added award emoji
* @throws GitLabApiException if any exception occurs
*/
public
AwardEmoji
addMergeRequestAwardEmoji
(
Object
projectIdOrPath
,
Integer
mergeRequestIid
,
String
name
)
throws
GitLabApiException
{
GitLabApiForm
form
=
new
GitLabApiForm
().
withParam
(
"name"
,
name
,
true
);
Response
response
=
post
(
Response
.
Status
.
CREATED
,
form
.
asMap
(),
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"merge_requests"
,
mergeRequestIid
,
"award_emoji"
);
return
(
response
.
readEntity
(
AwardEmoji
.
class
));
}
/**
* Add an award emoji to the specified snippet.
*
* <pre><code>GitLab Endpoint: POST /projects/:id/snippets/:snippet_id/award_emoji</code></pre>
*
* @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path
* @param snippetId the snippet ID to add the award emoji to
* @param name the name of the award emoji to add
* @return an AwardEmoji instance for the added award emoji
* @throws GitLabApiException if any exception occurs
*/
public
AwardEmoji
addSnippetAwardEmoji
(
Object
projectIdOrPath
,
Integer
snippetId
,
String
name
)
throws
GitLabApiException
{
GitLabApiForm
form
=
new
GitLabApiForm
().
withParam
(
"name"
,
name
,
true
);
Response
response
=
post
(
Response
.
Status
.
CREATED
,
form
.
asMap
(),
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"snippets"
,
snippetId
,
"award_emoji"
);
return
(
response
.
readEntity
(
AwardEmoji
.
class
));
}
/**
* Add an award emoji for the specified note.
*
* <pre><code>GitLab Endpoint: POST /projects/:id/issues/:issue_iid/notes/:noteId/award_emoji</code></pre>
*
* @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path
* @param issueIid the issue IID of the issue that owns the note
* @param noteId the note ID to add the award emoji to
* @param name the name of the award emoji to add
* @return an AwardEmoji instance for the added award emoji
* @throws GitLabApiException if any exception occurs
*/
public
AwardEmoji
addNoteAwardEmoji
(
Object
projectIdOrPath
,
Integer
issueIid
,
Integer
noteId
,
String
name
)
throws
GitLabApiException
{
GitLabApiForm
form
=
new
GitLabApiForm
().
withParam
(
"name"
,
name
,
true
);
Response
response
=
post
(
Response
.
Status
.
CREATED
,
form
.
asMap
(),
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"issues"
,
issueIid
,
"notes"
,
noteId
,
"award_emoji"
);
return
(
response
.
readEntity
(
AwardEmoji
.
class
));
}
/**
* Delete an award emoji from the specified issue.
*
* <pre><code>GitLab Endpoint: DELETE /projects/:id/issues/:issue_iid/award_emoji/:award_id</code></pre>
*
* @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path
* @param issueIid the issue IID to delete the award emoji from
* @param awardId the ID of the award emoji to delete
* @throws GitLabApiException if any exception occurs
*/
public
void
deleteIssueAwardEmoji
(
Object
projectIdOrPath
,
Integer
issueIid
,
Integer
awardId
)
throws
GitLabApiException
{
delete
(
Response
.
Status
.
NO_CONTENT
,
null
,
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"issues"
,
issueIid
,
"award_emoji"
,
awardId
);
}
/**
* Delete an award emoji from the specified merge request.
*
* <pre><code>GitLab Endpoint: DELETE /projects/:id/merge_requests/:merge_request_iid/award_emoji/:award_id</code></pre>
*
* @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path
* @param mergeRequestIid the merge request IID to delete the award emoji from
* @param awardId the ID of the award emoji to delete
* @throws GitLabApiException if any exception occurs
*/
public
void
deleteMergeRequestAwardEmoji
(
Object
projectIdOrPath
,
Integer
mergeRequestIid
,
Integer
awardId
)
throws
GitLabApiException
{
delete
(
Response
.
Status
.
NO_CONTENT
,
null
,
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"merge_requests"
,
mergeRequestIid
,
"award_emoji"
,
awardId
);
}
/**
* Delete an award emoji from the specified snippet.
*
* <pre><code>GitLab Endpoint: DELETE /projects/:id/snippets/:snippet_id/award_emoji/:award_id</code></pre>
*
* @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path
* @param snippetId the snippet ID to delete the award emoji from
* @param awardId the ID of the award emoji to delete
* @throws GitLabApiException if any exception occurs
*/
public
void
deleteSnippetAwardEmoji
(
Object
projectIdOrPath
,
Integer
snippetId
,
Integer
awardId
)
throws
GitLabApiException
{
delete
(
Response
.
Status
.
NO_CONTENT
,
null
,
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"snippets"
,
snippetId
,
"award_emoji"
,
awardId
);
}
/**
* Delete an award emoji from the specified note.
*
* <pre><code>GitLab Endpoint: DELETE /projects/:id/issues/:issue_iid/notes/:note_id/award_emoji/:award_id</code></pre>
*
* @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path
* @param issueIid the issue IID that owns the note
* @param noteId the note ID of the note to delete the award emoji from
* @param awardId the ID of the award emoji to delete
* @throws GitLabApiException if any exception occurs
*/
public
void
deleteNoteAwardEmoji
(
Object
projectIdOrPath
,
Integer
issueIid
,
Integer
noteId
,
Integer
awardId
)
throws
GitLabApiException
{
delete
(
Response
.
Status
.
NO_CONTENT
,
null
,
"projects"
,
getProjectIdOrPath
(
projectIdOrPath
),
"issues"
,
issueIid
,
"notes"
,
noteId
,
"award_emoji"
,
awardId
);
}
}
src/main/java/org/gitlab4j/api/GitLabApi.java
View file @
558cabe2
...
@@ -48,6 +48,7 @@ public class GitLabApi {
...
@@ -48,6 +48,7 @@ public class GitLabApi {
private
int
defaultPerPage
=
DEFAULT_PER_PAGE
;
private
int
defaultPerPage
=
DEFAULT_PER_PAGE
;
private
Session
session
;
private
Session
session
;
private
AwardEmojiApi
awardEmojiApi
;
private
CommitsApi
commitsApi
;
private
CommitsApi
commitsApi
;
private
DeployKeysApi
deployKeysApi
;
private
DeployKeysApi
deployKeysApi
;
private
EpicsApi
epicsApi
;
private
EpicsApi
epicsApi
;
...
@@ -809,6 +810,25 @@ public class GitLabApi {
...
@@ -809,6 +810,25 @@ public class GitLabApi {
return
(
response
.
readEntity
(
Version
.
class
));
return
(
response
.
readEntity
(
Version
.
class
));
}
}
/**
* Gets the AwardEmojiApi instance owned by this GitLabApi instance. The AwardEmojiApi is used
* to perform all award emoji related API calls.
*
* @return the AwardEmojiApi instance owned by this GitLabApi instance
*/
public
AwardEmojiApi
getAwardEmojiApi
()
{
if
(
awardEmojiApi
==
null
)
{
synchronized
(
this
)
{
if
(
awardEmojiApi
==
null
)
{
awardEmojiApi
=
new
AwardEmojiApi
(
this
);
}
}
}
return
(
awardEmojiApi
);
}
/**
/**
* Gets the CommitsApi instance owned by this GitLabApi instance. The CommitsApi is used
* Gets the CommitsApi instance owned by this GitLabApi instance. The CommitsApi is used
* to perform all commit related API calls.
* to perform all commit related API calls.
...
...
src/main/java/org/gitlab4j/api/models/AwardEmoji.java
0 → 100644
View file @
558cabe2
package
org.gitlab4j.api.models
;
import
java.util.Date
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlRootElement
;
import
org.gitlab4j.api.utils.JacksonJsonEnumHelper
;
import
com.fasterxml.jackson.annotation.JsonCreator
;
import
com.fasterxml.jackson.annotation.JsonValue
;
@XmlRootElement
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
public
class
AwardEmoji
{
public
enum
AwardableType
{
ISSUE
,
MERGE_REQUEST
,
NOTE
,
SNIPPET
;
private
static
JacksonJsonEnumHelper
<
AwardableType
>
enumHelper
=
new
JacksonJsonEnumHelper
<>(
AwardableType
.
class
,
true
);
@JsonCreator
public
static
AwardableType
forValue
(
String
value
)
{
return
enumHelper
.
forValue
(
value
);
}
@JsonValue
public
String
toValue
()
{
return
(
enumHelper
.
toString
(
this
));
}
@Override
public
String
toString
()
{
return
(
enumHelper
.
toString
(
this
));
}
}
private
Integer
id
;
private
String
name
;
private
User
user
;
private
Date
createdAt
;
private
Date
updatedAt
;
private
Integer
awardableId
;
private
AwardableType
awardableType
;
public
Integer
getId
()
{
return
this
.
id
;
}
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
public
String
getName
()
{
return
this
.
name
;
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
public
User
getUser
()
{
return
user
;
}
public
void
setUser
(
User
user
)
{
this
.
user
=
user
;
}
public
Date
getCreatedAt
()
{
return
createdAt
;
}
public
void
setCreatedAt
(
Date
createdAt
)
{
this
.
createdAt
=
createdAt
;
}
public
Date
getUpdatedAt
()
{
return
updatedAt
;
}
public
void
setUpdatedAt
(
Date
updatedAt
)
{
this
.
updatedAt
=
updatedAt
;
}
public
Integer
getAwardableId
()
{
return
awardableId
;
}
public
void
setAwardableId
(
Integer
awardableId
)
{
this
.
awardableId
=
awardableId
;
}
public
AwardableType
getAwardableType
()
{
return
awardableType
;
}
public
void
setAwardableType
(
AwardableType
awardableType
)
{
this
.
awardableType
=
awardableType
;
}
}
src/test/java/org/gitlab4j/api/TestGitLabApiBeans.java
View file @
558cabe2
...
@@ -31,6 +31,7 @@ import java.util.List;
...
@@ -31,6 +31,7 @@ import java.util.List;
import
java.util.Map
;
import
java.util.Map
;
import
org.gitlab4j.api.models.ArtifactsFile
;
import
org.gitlab4j.api.models.ArtifactsFile
;
import
org.gitlab4j.api.models.AwardEmoji
;
import
org.gitlab4j.api.models.Branch
;
import
org.gitlab4j.api.models.Branch
;
import
org.gitlab4j.api.models.Comment
;
import
org.gitlab4j.api.models.Comment
;
import
org.gitlab4j.api.models.Commit
;
import
org.gitlab4j.api.models.Commit
;
...
@@ -102,6 +103,17 @@ public class TestGitLabApiBeans {
...
@@ -102,6 +103,17 @@ public class TestGitLabApiBeans {
jacksonJson
.
getObjectMapper
().
configure
(
SerializationFeature
.
ORDER_MAP_ENTRIES_BY_KEYS
,
true
);
jacksonJson
.
getObjectMapper
().
configure
(
SerializationFeature
.
ORDER_MAP_ENTRIES_BY_KEYS
,
true
);
}
}
@Test
public
void
testAwardEmoji
()
{
try
{
AwardEmoji
awardEmoji
=
makeFakeApiCall
(
AwardEmoji
.
class
,
"award-emoji"
);
assertTrue
(
compareJson
(
awardEmoji
,
"award-emoji"
));
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
}
}
@Test
@Test
public
void
testBranch
()
{
public
void
testBranch
()
{
...
...
src/test/resources/org/gitlab4j/api/award-emoji.json
0 → 100644
View file @
558cabe2
{
"id"
:
1
,
"name"
:
"microphone"
,
"user"
:
{
"name"
:
"User 4"
,
"username"
:
"user4"
,
"id"
:
26
,
"state"
:
"active"
,
"avatar_url"
:
"http://www.gravatar.com/avatar/7e65550957227bd38fe2d7fbc6fd2f7b?s=80&d=identicon"
,
"web_url"
:
"http://gitlab.example.com/user4"
},
"created_at"
:
"2016-06-15T10:09:34.177Z"
,
"updated_at"
:
"2016-06-15T10:09:34.177Z"
,
"awardable_id"
:
80
,
"awardable_type"
:
"Issue"
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment