diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-08-27 11:33:56 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-08-27 11:33:56 +0100 |
commit | dd661769e1846b627d26203f6ca7936e0820d93c (patch) | |
tree | 874a737fba65d5c8e515e9fa93ff7707dcff9a97 /webclient | |
parent | Added support for GET /events/$eventid with auth checks. (diff) | |
download | synapse-dd661769e1846b627d26203f6ca7936e0820d93c.tar.xz |
Renamed /rooms to /createRoom. Removed ability to PUT raw room IDs, and removed tests which tested that. Updated cmdclient and webclient.
Diffstat (limited to 'webclient')
-rw-r--r-- | webclient/components/matrix/matrix-service.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/components/matrix/matrix-service.js b/webclient/components/matrix/matrix-service.js index 2286485605..ba4c3aeeca 100644 --- a/webclient/components/matrix/matrix-service.js +++ b/webclient/components/matrix/matrix-service.js @@ -97,7 +97,7 @@ angular.module('matrixService', []) // Create a room create: function(room_id, visibility) { // The REST path spec - var path = "/rooms"; + var path = "/createRoom"; return doRequest("POST", path, undefined, { visibility: visibility, |