Ghost/core/server/errors/nopermissionerror.js
Sebastian Gierlinger 79a80b67ac Invite user API
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 ‚‘
2014-07-02 16:22:18 +02:00

15 lines
393 B
JavaScript

// # No Permission Error
// Custom error class with status code and type prefilled.
function NoPermissionError(message) {
this.message = message;
this.stack = new Error().stack;
this.code = 403;
this.type = this.name;
}
NoPermissionError.prototype = Object.create(Error.prototype);
NoPermissionError.prototype.name = 'NoPermissionError';
module.exports = NoPermissionError;