James Moger
2011-05-19 00afd77a2182ece3d9522d41b86b4ddd7e132288
src/com/gitblit/wicket/models/RepositoryModel.java
@@ -17,9 +17,14 @@
   public boolean useTickets;
   public boolean useDocs;
   public AccessRestrictionType accessRestriction;
   public boolean isFrozen;
   public RepositoryModel() {
      this.name = "";
      this.description = "";
      this.owner = "";
      this.lastChange = new Date(0);
      this.accessRestriction = AccessRestrictionType.NONE;
   }
   public RepositoryModel(String name, String description, String owner, Date lastchange) {
@@ -27,5 +32,6 @@
      this.description = description;
      this.owner = owner;
      this.lastChange = lastchange;
      this.accessRestriction = AccessRestrictionType.NONE;
   }   
}