James Moger
2014-03-06 aae58435191c1b4e73ef7c5447e7a0832c7f0e53
src/main/java/com/gitblit/utils/RpcUtils.java
@@ -252,6 +252,37 @@
   }
   /**
    * Reindex all tickets on the Gitblit server.
    *
    * @param serverUrl
    * @param account
    * @param password
    * @return true if the action succeeded
    * @throws IOException
    */
   public static boolean reindexTickets(String serverUrl, String account,
         char[] password) throws IOException {
      return doAction(RpcRequest.REINDEX_TICKETS, null, null, serverUrl, account,
            password);
   }
   /**
    * Reindex tickets for the specified repository on the Gitblit server.
    *
    * @param serverUrl
    * @param repositoryName
    * @param account
    * @param password
    * @return true if the action succeeded
    * @throws IOException
    */
   public static boolean reindexTickets(String serverUrl, String repositoryName,
         String account, char[] password) throws IOException {
      return doAction(RpcRequest.REINDEX_TICKETS, repositoryName, null, serverUrl,
            account, password);
   }
   /**
    * Create a user on the Gitblit server.
    *
    * @param user