- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for isLoginRequired (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/search/SearchAction.java
/** * The advance search page. * @param form The search form. * @return The HTML response. */ @Execute public HtmlResponse advance(final SearchForm form) { if (isLoginRequired()) { return redirectToLogin(); } validate(form, messages -> {}, () -> asHtml(virtualHost(path_IndexJsp)).renderWith(data -> { buildInitParams();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
* and user authentication status. * * @return true if login is required, false otherwise */ protected boolean isLoginRequired() { if (fessConfig.isLoginRequired() && !fessLoginAssist.getSavedUserBean().isPresent()) { return true; } return false; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
* @param form the form to populate with configuration values */ public static void updateForm(final FessConfig fessConfig, final EditForm form) { form.loginRequired = fessConfig.isLoginRequired() ? Constants.TRUE : Constants.FALSE; form.resultCollapsed = fessConfig.isResultCollapsed() ? Constants.TRUE : Constants.FALSE; form.loginLink = fessConfig.isLoginLinkEnabled() ? Constants.TRUE : Constants.FALSE;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.9K bytes - Viewed (0)