From 88693e491b0d929b6b3f5783d11126fce87b1370 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Thu, 06 Mar 2014 13:38:12 -0500 Subject: [PATCH] Add and document REINDEX_TICKETS rpc request type --- src/main/java/com/gitblit/utils/RpcUtils.java | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gitblit/utils/RpcUtils.java b/src/main/java/com/gitblit/utils/RpcUtils.java index 24e07dc..5e577fb 100644 --- a/src/main/java/com/gitblit/utils/RpcUtils.java +++ b/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 -- Gitblit v1.9.1