2020-06-04 15:43:07 +01:00
|
|
|
package inthttp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
"github.com/matrix-org/dendrite/appservice/api"
|
2020-06-12 14:55:57 +01:00
|
|
|
"github.com/matrix-org/dendrite/internal/httputil"
|
2020-06-04 15:43:07 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// AddRoutes adds the AppServiceQueryAPI handlers to the http.ServeMux.
|
2022-05-06 12:39:26 +01:00
|
|
|
func AddRoutes(a api.AppServiceInternalAPI, internalAPIMux *mux.Router) {
|
2020-06-04 15:43:07 +01:00
|
|
|
internalAPIMux.Handle(
|
|
|
|
AppServiceRoomAliasExistsPath,
|
2022-08-11 15:29:33 +01:00
|
|
|
httputil.MakeInternalRPCAPI("AppserviceRoomAliasExists", a.RoomAliasExists),
|
2020-06-04 15:43:07 +01:00
|
|
|
)
|
2022-08-11 15:29:33 +01:00
|
|
|
|
2020-06-04 15:43:07 +01:00
|
|
|
internalAPIMux.Handle(
|
|
|
|
AppServiceUserIDExistsPath,
|
2022-08-11 15:29:33 +01:00
|
|
|
httputil.MakeInternalRPCAPI("AppserviceUserIDExists", a.UserIDExists),
|
2020-06-04 15:43:07 +01:00
|
|
|
)
|
|
|
|
}
|