diff options
author | James Moger <james.moger@gitblit.com> | 2011-12-16 21:14:48 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2011-12-16 21:16:48 -0500 |
commit | fa54bec1d90ff0baa8a509bc68acb6a92bb817a8 (patch) | |
tree | 32b6d4521961757f6b60ab7d8a0ea0066f35d125 /src/com/gitblit/models/RepositoryModel.java | |
parent | b4573fc1fc4c71ef620b0473a503bde9a8fd3578 (diff) | |
download | gitblit-fa54bec1d90ff0baa8a509bc68acb6a92bb817a8.tar.gz gitblit-fa54bec1d90ff0baa8a509bc68acb6a92bb817a8.zip |
Groovy push hooks
Diffstat (limited to 'src/com/gitblit/models/RepositoryModel.java')
-rw-r--r-- | src/com/gitblit/models/RepositoryModel.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/gitblit/models/RepositoryModel.java b/src/com/gitblit/models/RepositoryModel.java index 9a774fbd..c5423f03 100644 --- a/src/com/gitblit/models/RepositoryModel.java +++ b/src/com/gitblit/models/RepositoryModel.java @@ -55,6 +55,8 @@ public class RepositoryModel implements Serializable, Comparable<RepositoryModel public String frequency;
public String origin;
public String size;
+ public List<String> preReceiveScripts;
+ public List<String> postReceiveScripts;
public RepositoryModel() {
this("", "", "", new Date(0));
|