James Moger
2011-09-30 8c5d72248c20fc78c7b2c1d4388d073affccad20
src/com/gitblit/wicket/AuthorizationStrategy.java
@@ -35,6 +35,12 @@
   @SuppressWarnings({ "unchecked", "rawtypes" })
   @Override
   protected boolean isPageAuthorized(Class pageClass) {
      if (RepositoriesPage.class.equals(pageClass)) {
         // allow all requests to get to the RepositoriesPage with its inline
         // authentication form
         return true;
      }
      if (BasePage.class.isAssignableFrom(pageClass)) {
         boolean authenticateView = GitBlit.getBoolean(Keys.web.authenticateViewPages, true);
         boolean authenticateAdmin = GitBlit.getBoolean(Keys.web.authenticateAdminPages, true);