summaryrefslogtreecommitdiffstats
path: root/api4/api.go
diff options
context:
space:
mode:
authorJesse Hallam <jesse.hallam@gmail.com>2018-10-18 13:49:10 -0400
committerElias Nahum <nahumhbl@gmail.com>2018-10-18 14:49:10 -0300
commitd1805733feb8c48a7286eb1affc1f98ed1a044a8 (patch)
tree9c141e10210e68686173a9f093a383d26792f276 /api4/api.go
parenta708c33520e327487fd2dc05eaab3563c8161fb7 (diff)
downloadchat-d1805733feb8c48a7286eb1affc1f98ed1a044a8.tar.gz
chat-d1805733feb8c48a7286eb1affc1f98ed1a044a8.tar.bz2
chat-d1805733feb8c48a7286eb1affc1f98ed1a044a8.zip
MM-12505: remove all things WebRTC (#9700)
Diffstat (limited to 'api4/api.go')
-rw-r--r--api4/api.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/api4/api.go b/api4/api.go
index b324959e9..f824c5cc0 100644
--- a/api4/api.go
+++ b/api4/api.go
@@ -106,8 +106,6 @@ type Routes struct {
ReactionByNameForPostForUser *mux.Router // 'api/v4/users/{user_id:[A-Za-z0-9]+}/posts/{post_id:[A-Za-z0-9]+}/reactions/{emoji_name:[A-Za-z0-9_-+]+}'
- Webrtc *mux.Router // 'api/v4/webrtc'
-
TermsOfService *mux.Router // 'api/v4/terms_of_service
}
@@ -196,8 +194,6 @@ func Init(a *app.App, root *mux.Router) *API {
api.BaseRoutes.ReactionByNameForPostForUser = api.BaseRoutes.PostForUser.PathPrefix("/reactions/{emoji_name:[A-Za-z0-9\\_\\-\\+]+}").Subrouter()
- api.BaseRoutes.Webrtc = api.BaseRoutes.ApiRoot.PathPrefix("/webrtc").Subrouter()
-
api.BaseRoutes.OpenGraph = api.BaseRoutes.ApiRoot.PathPrefix("/opengraph").Subrouter()
api.BaseRoutes.Roles = api.BaseRoutes.ApiRoot.PathPrefix("/roles").Subrouter()
@@ -229,7 +225,6 @@ func Init(a *app.App, root *mux.Router) *API {
api.InitEmoji()
api.InitOAuth()
api.InitReaction()
- api.InitWebrtc()
api.InitOpenGraph()
api.InitPlugin()
api.InitRole()