summaryrefslogtreecommitdiffstats
path: root/einterfaces/ldap.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-03-07 14:59:15 -0800
committer=Corey Hulen <corey@hulen.com>2016-03-07 14:59:15 -0800
commit777012eee42186316bc68b0ea1c8232601962bc4 (patch)
tree9eae93ee873762038667a3be93001bea4612e195 /einterfaces/ldap.go
parent0387ac799792fdd0684b863bb029813bbb3eccf7 (diff)
downloadchat-777012eee42186316bc68b0ea1c8232601962bc4.tar.gz
chat-777012eee42186316bc68b0ea1c8232601962bc4.tar.bz2
chat-777012eee42186316bc68b0ea1c8232601962bc4.zip
PLT-1830 Adding ability to create team with ldap
Diffstat (limited to 'einterfaces/ldap.go')
-rw-r--r--einterfaces/ldap.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/einterfaces/ldap.go b/einterfaces/ldap.go
index d4bfadc21..1c5938322 100644
--- a/einterfaces/ldap.go
+++ b/einterfaces/ldap.go
@@ -9,6 +9,8 @@ import (
type LdapInterface interface {
DoLogin(team *model.Team, id string, password string) (*model.User, *model.AppError)
+ GetUser(id string) (*model.User, *model.AppError)
+ CheckPassword(id string, password string) *model.AppError
}
var theLdapInterface LdapInterface