support webmaker-desktop makes hosted at beta.webmaker.org.

This commit is contained in:
Atul Varma 2015-06-09 12:28:31 -04:00
Родитель ff34605a5f
Коммит 7939a5e932
2 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -71,6 +71,7 @@ All POST endpoints take JSON-encoded bodies.
and querystring arguments, so long as it is hosted at one
of the following webmaker desktop domains:
* webmaker-desktop-staging.herokuapp.com
* beta.webmaker.org
### Methods

Просмотреть файл

@ -4,7 +4,7 @@ var urlParse = require('url').parse;
var MOFODEV_URL_RE = /^https?:\/\/[A-Za-z0-9_\-]+\.mofodev\.net\//;
var HTTPS_MAKES_URL_RE = /^https:\/\/[A-Za-z0-9_\-]+\.makes\.org\//;
var GOGGLES_URL_RE = /^http:\/\/[A-Za-z0-9_\-]+\.makes\.org\/goggles\//;
var WEBMAKER_DESKTOP_RE = /^https:\/\/webmaker-desktop-staging\.herokuapp\.com/;
var WEBMAKER_DESKTOP_RE = /^https:\/\/(webmaker-desktop-staging\.herokuapp\.com|beta\.webmaker\.org)\//;
var ENDS_WITH_UNDERSCORE_RE = /_$/;
function hostnameAndPath(url) {