summaryrefslogtreecommitdiff
path: root/doc/ldap-group-sync.markdown
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-12-06 23:00:58 -0500
committerFrederic Guillot <fred@kanboard.net>2015-12-06 23:00:58 -0500
commit7f3bf38e8db9288d92f2864be4f66b14adf80971 (patch)
tree57c5d31876ba50c1674736493f58d9ab4e59474b /doc/ldap-group-sync.markdown
parent5c84996ee7140e2cff1d8e18fb9482e8a4c020a8 (diff)
Fix typo in documentation
Diffstat (limited to 'doc/ldap-group-sync.markdown')
-rw-r--r--doc/ldap-group-sync.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ldap-group-sync.markdown b/doc/ldap-group-sync.markdown
index a5ced8db..9dea5acc 100644
--- a/doc/ldap-group-sync.markdown
+++ b/doc/ldap-group-sync.markdown
@@ -29,12 +29,12 @@ define('LDAP_GROUP_MANAGER_DN', 'CN=Kanboard Managers,CN=Users,DC=kanboard,DC=lo
Automatically load LDAP groups for project permissions
------------------------------------------------------
-This feature allow you to sync automatically LDAP groups with Kanboard groups.
+This feature allows you to sync automatically LDAP groups with Kanboard groups.
Each group can have a different project role assigned.
On the project permissions page, people can enter groups in the auto-complete field and Kanboard can search for groups with any provider enabled.
-If the group doesn't exists in the local database, it will be automatically synced.
+If the group doesn't exist in the local database, it will be automatically synced.
- `LDAP_GROUP_PROVIDER`: Enable the LDAP group provider
- `LDAP_GROUP_BASE_DN`: Distinguished names to find groups in LDAP directory
@@ -50,7 +50,7 @@ define('LDAP_GROUP_FILTER', '(&(objectClass=group)(sAMAccountName=%s*))');
```
With the filter given as example above, Kanboard will search for groups that match the query.
-If the end-user type the text "My group" in the auto-complete box, Kanboard will return all groups that match the pattern: `(&(objectClass=group)(sAMAccountName=My group*))`.
+If the end-user enter the text "My group" in the auto-complete box, Kanboard will return all groups that match the pattern: `(&(objectClass=group)(sAMAccountName=My group*))`.
Note that the special characters `*` is important here, otherwise an exact match will be done.