Skip to content

Commit

Permalink
refs #37
Browse files Browse the repository at this point in the history
  • Loading branch information
rmpestano committed Jan 10, 2018
1 parent 664d39c commit 600e624
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public CommitInfo getCommitInfo() {
return commitInfo;
}

@Whitelisted
public String getChanges() {
return changes;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,12 @@ public LastChanges(CommitInfo current, CommitInfo previous, String diff) {
}


@Whitelisted
public CommitInfo getCurrentRevision() {
return currentRevision;
}

@Whitelisted
public CommitInfo getPreviousRevision() {
return previousRevision;
}
Expand All @@ -48,6 +50,7 @@ public String getDiff() {
return diff;
}

@Whitelisted
public String getEscapedDiff() {
if (diff != null) {
return StringEscapeUtils.escapeEcmaScript(diff);
Expand Down

0 comments on commit 600e624

Please sign in to comment.