1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix: add 'options' field to AuthenticationRequired

This commit is contained in:
Ivar Conradi Østhus 2020-05-14 22:32:33 +02:00
parent b3fdbbe84f
commit 04b416bdd7

View File

@ -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;
}
};