PLT-1830 Adding ability to create team with ldap

Этот коммит содержится в:
=Corey Hulen
2016-03-07 14:59:15 -08:00
родитель 0387ac7997
Коммит 777012eee4
8 изменённых файлов: 380 добавлений и 0 удалений

Просмотреть файл

@@ -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