diff options
author | James Moger <james.moger@gitblit.com> | 2011-04-27 21:22:12 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2011-04-27 21:22:12 -0400 |
commit | f97bf09263fe8ef7ba4dcf231dfe7b8265b1e0df (patch) | |
tree | b36da52ab523f1b6af9f00409703edfbfe77ccfe /src/com/gitblit/wicket/models/RepositoryModel.java | |
parent | 3e087ada55f8b0e83b146578b695552db9dc8d97 (diff) | |
download | gitblit-f97bf09263fe8ef7ba4dcf231dfe7b8265b1e0df.tar.gz gitblit-f97bf09263fe8ef7ba4dcf231dfe7b8265b1e0df.zip |
Centralized markdown transforms. Moved config ops to GitBlit.
Diffstat (limited to 'src/com/gitblit/wicket/models/RepositoryModel.java')
-rw-r--r-- | src/com/gitblit/wicket/models/RepositoryModel.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/com/gitblit/wicket/models/RepositoryModel.java b/src/com/gitblit/wicket/models/RepositoryModel.java index 8df38083..8840f070 100644 --- a/src/com/gitblit/wicket/models/RepositoryModel.java +++ b/src/com/gitblit/wicket/models/RepositoryModel.java @@ -15,6 +15,10 @@ public class RepositoryModel implements Serializable { public boolean useDocs;
public boolean useRestrictedAccess;
+ public RepositoryModel() {
+
+ }
+
public RepositoryModel(String name, String description, String owner, Date lastchange) {
this.name = name;
this.description = description;
|