diff --git a/lib/authentication-required.js b/lib/authentication-required.js index 4c1a60f2d8..4f6d97689c 100644 --- a/lib/authentication-required.js +++ b/lib/authentication-required.js @@ -1,9 +1,10 @@ 'use strict'; module.exports = class AuthenticationRequired { - constructor({ type, path, message }) { + constructor({ type, path, message, options }) { this.type = type; this.path = path; this.message = message; + this.options = options; } };