Temporarily disable the status page before the release.
authorMathieu Baudier <mbaudier@argeo.org>
Tue, 20 Sep 2016 13:58:59 +0000 (13:58 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Tue, 20 Sep 2016 13:58:59 +0000 (13:58 +0000)
git-svn-id: https://svn.argeo.org/commons/trunk@9197 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

org.argeo.cms.ui/src/org/argeo/cms/maintenance/DeploymentEntryPoint.java
org.argeo.cms.ui/src/org/argeo/cms/maintenance/MaintenanceUi.java

index 6e4d5abcb00e2bbcb045248b54377c3a9bb1aa2e..1769c6372b1bd1ec875924f6628787dae44a2c27 100644 (file)
@@ -27,8 +27,9 @@ class DeploymentEntryPoint extends AbstractEntryPoint {
 
        @Override
        protected void createContents(Composite parent) {
-               if (!CurrentUser.roles().contains(AuthConstants.ROLE_ADMIN))
-                       return;
+               // FIXME manage authentication if needed
+               // if (!CurrentUser.roles().contains(AuthConstants.ROLE_ADMIN))
+               // return;
 
                // parent.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
                if (isDesktop()) {
index 538379f06451d7bcb7010e869e992e261eace049..11b0b9077eb6ec575dc3e7aabc74944be79850ad 100644 (file)
@@ -7,7 +7,8 @@ public class MaintenanceUi implements ApplicationConfiguration {
 
        @Override
        public void configure(Application application) {
-               application.addEntryPoint("/status", DeploymentEntryPoint.class, null);
+               // application.addEntryPoint("/status", DeploymentEntryPoint.class,
+               // null);
        }
 
 }