mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
79a80b67ac
closes #3080 - added users.invite() to add user from email with random password - added `GET /ghost/api/v0.1/users/` to invite users and resend invitations - removed one user limit - added global utils for uid generation - changed some „“ to ‚‘
19 lines
478 B
JavaScript
19 lines
478 B
JavaScript
// # Validation Error
|
|
// Custom error class with status code and type prefilled.
|
|
|
|
function ValidationError(message, offendingProperty) {
|
|
this.message = message;
|
|
this.stack = new Error().stack;
|
|
this.code = 422;
|
|
if (offendingProperty) {
|
|
this.property = offendingProperty;
|
|
}
|
|
this.type = this.name;
|
|
}
|
|
|
|
ValidationError.prototype = Object.create(Error.prototype);
|
|
ValidationError.prototype.name = 'ValidationError';
|
|
|
|
|
|
module.exports = ValidationError;
|