Skip to content

Commit

Permalink
Merge branch 'appng-manager-1.18.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
appng-buildmaster committed Oct 13, 2021
2 parents 1eb3b5f + be89916 commit 7136748
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>appng-manager</artifactId>
<packaging>jar</packaging>
<name>appNG Manager</name>
<version>1.18.0</version>
<version>1.18.1</version>
<description><![CDATA[Global appNG administration]]></description>
<url>https://appng.org</url>

Expand All @@ -21,7 +21,7 @@
<parent>
<groupId>org.appng</groupId>
<artifactId>appng-application-parent</artifactId>
<version>1.23.0-SNAPSHOT</version>
<version>1.23.0</version>
</parent>

<scm>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public DataContainer getData(Site site, Application application, Environment env
ldapProps.add(ldapHost);
ldapProps.add(getProperty(siteProps, LdapService.LDAP_DOMAIN));
ldapProps.add(getProperty(siteProps, LdapService.LDAP_GROUP_BASE_DN));
ldapProps.add(getProperty(siteProps, LdapService.LDAP_USER_BASE_DN));
SimpleProperty ldapUser = getProperty(siteProps, LdapService.LDAP_USER);
ldapProps.add(ldapUser);
ldapProps.add(getProperty(siteProps, LdapService.LDAP_ID_ATTRIBUTE));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
import org.appng.api.ProcessingException;
import org.appng.api.SiteProperties;
import org.appng.api.model.Property;
import org.appng.api.model.SimpleProperty;
import org.appng.api.model.Property.Type;
import org.appng.api.model.SimpleProperty;
import org.appng.api.support.CallableAction;
import org.appng.api.support.CallableDataSource;
import org.appng.application.manager.form.PropertyForm;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import org.appng.api.PermissionProcessor;
import org.appng.api.Request;
import org.appng.api.model.Subject;
import org.appng.application.manager.business.webservice.LogViewer;
import org.junit.Assert;
import org.junit.Test;
import org.mockito.Mockito;
Expand Down
10 changes: 9 additions & 1 deletion src/test/resources/xml/LdapUsersTest-testSettings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</meta-data>
</config>
<data paginate="false">
<resultset chunk="0" chunkname="ldapSettings" chunksize="8" nextchunk="0" previouschunk="0" firstchunk="0" lastchunk="0" hits="8">
<resultset chunk="0" chunkname="ldapSettings" chunksize="9" nextchunk="0" previouschunk="0" firstchunk="0" lastchunk="0" hits="9">
<result>
<field name="name" type="text">
<value>ldapDisabled</value>
Expand Down Expand Up @@ -45,6 +45,14 @@
<value></value>
</field>
</result>
<result>
<field name="name" type="text">
<value>ldapUserBaseDn</value>
</field>
<field name="value" type="text">
<value></value>
</field>
</result>
<result>
<field name="name" type="text">
<value>ldapUser</value>
Expand Down

0 comments on commit 7136748

Please sign in to comment.