This repository has been archived on 2023-11-13. You can view files and clone it, but cannot push or open issues or pull requests.
imagini/internal/auth/ldap.go

10 lines
138 B
Go
Raw Normal View History

2021-01-10 00:44:02 +00:00
package auth
import (
2021-02-04 20:31:07 +00:00
"reichard.io/imagini/graph/model"
2021-01-10 00:44:02 +00:00
)
2021-02-02 20:34:10 +00:00
func authenticateLDAPUser(user model.User, pw string) bool {
2021-02-04 20:31:07 +00:00
return false
2021-01-10 00:44:02 +00:00
}