James Moger
2014-05-08 1d2d5efe6d5dafbd2236776bc4667521921e5c8c
src/main/java/com/gitblit/Constants.java
@@ -403,6 +403,27 @@
   }
   /**
    * Enumeration of the feed content object types.
    */
   public static enum FeedObjectType {
      COMMIT, TAG;
      public static FeedObjectType forName(String name) {
         for (FeedObjectType type : values()) {
            if (type.name().equalsIgnoreCase(name)) {
               return type;
            }
         }
         return COMMIT;
      }
      @Override
      public String toString() {
         return name().toLowerCase();
      }
   }
   /**
    * The types of objects that can be indexed and queried.
    */
   public static enum SearchObjectType {