summaryrefslogtreecommitdiffstats
path: root/api4/api.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-03-14 08:43:40 -0400
committerGitHub <noreply@github.com>2017-03-14 08:43:40 -0400
commitee457176bd0c4442358df089044b87eb75fe7569 (patch)
tree18ddf06b686b24925febc2e9a33f86dff4936c17 /api4/api.go
parenta71a9fc3bff1b6a6c9d5e0a65f53686922572834 (diff)
downloadchat-ee457176bd0c4442358df089044b87eb75fe7569.tar.gz
chat-ee457176bd0c4442358df089044b87eb75fe7569.tar.bz2
chat-ee457176bd0c4442358df089044b87eb75fe7569.zip
Implement admin LDAP endpoints for APIv4 (#5720)
Diffstat (limited to 'api4/api.go')
-rw-r--r--api4/api.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/api4/api.go b/api4/api.go
index 29986f551..53d7394c7 100644
--- a/api4/api.go
+++ b/api4/api.go
@@ -67,6 +67,8 @@ type Routes struct {
Compliance *mux.Router // 'api/v4/compliance'
Cluster *mux.Router // 'api/v4/cluster'
+ LDAP *mux.Router // 'api/v4/ldap'
+
System *mux.Router // 'api/v4/system'
Preferences *mux.Router // 'api/v4/preferences'
@@ -139,6 +141,7 @@ func InitApi(full bool) {
BaseRoutes.Admin = BaseRoutes.ApiRoot.PathPrefix("/admin").Subrouter()
BaseRoutes.Compliance = BaseRoutes.ApiRoot.PathPrefix("/compliance").Subrouter()
BaseRoutes.Cluster = BaseRoutes.ApiRoot.PathPrefix("/cluster").Subrouter()
+ BaseRoutes.LDAP = BaseRoutes.ApiRoot.PathPrefix("/ldap").Subrouter()
BaseRoutes.System = BaseRoutes.ApiRoot.PathPrefix("/system").Subrouter()
BaseRoutes.Preferences = BaseRoutes.User.PathPrefix("/preferences").Subrouter()
BaseRoutes.License = BaseRoutes.ApiRoot.PathPrefix("/license").Subrouter()
@@ -160,6 +163,7 @@ func InitApi(full bool) {
InitSaml()
InitCompliance()
InitCluster()
+ InitLdap()
app.Srv.Router.Handle("/api/v4/{anything:.*}", http.HandlerFunc(Handle404))