Skip to content

Commit

Permalink
Merge pull request #427 from itepikin-smartling/master
Browse files Browse the repository at this point in the history
Add support for previous_filename for file details in PR.
  • Loading branch information
kohsuke authored May 1, 2018
2 parents 4dce173 + 1b04d47 commit 1961836
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/java/org/kohsuke/github/GHPullRequestFileDetail.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public class GHPullRequestFileDetail {
String raw_url;
String contents_url;
String patch;
String previous_filename;

public String getSha() {
return sha;
Expand Down Expand Up @@ -83,4 +84,9 @@ public URL getContentsUrl() {
public String getPatch() {
return patch;
}

public String getPreviousFilename()
{
return previous_filename;
}
}

0 comments on commit 1961836

Please sign in to comment.