lower case domain in migrate code path
This commit is contained in:
@@ -164,6 +164,8 @@ function migrate(req, res, next) {
|
|||||||
var options = _.pick(req.body, 'domain', 'size', 'region');
|
var options = _.pick(req.body, 'domain', 'size', 'region');
|
||||||
if (Object.keys(options).length === 0) return next(new HttpError(400, 'no migrate option provided'));
|
if (Object.keys(options).length === 0) return next(new HttpError(400, 'no migrate option provided'));
|
||||||
|
|
||||||
|
if (options.domain) options.domain = options.domain.toLowerCase();
|
||||||
|
|
||||||
cloudron.migrate(req.body, function (error) { // pass req.body because 'domain' can have arbitrary options
|
cloudron.migrate(req.body, function (error) { // pass req.body because 'domain' can have arbitrary options
|
||||||
if (error && error.reason === CloudronError.BAD_STATE) return next(new HttpError(409, error.message));
|
if (error && error.reason === CloudronError.BAD_STATE) return next(new HttpError(409, error.message));
|
||||||
if (error && error.reason === CloudronError.BAD_FIELD) return next(new HttpError(400, error.message));
|
if (error && error.reason === CloudronError.BAD_FIELD) return next(new HttpError(400, error.message));
|
||||||
|
|||||||
Reference in New Issue
Block a user