Skip to content

Commit

Permalink
Remedy 313 (#304)
Browse files Browse the repository at this point in the history
* Created noop implementation of User connector for back office-less deployments

* Fixed typo in config.users
  • Loading branch information
rexwhite authored Mar 1, 2023
1 parent 35b3e7b commit eb0d613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connectors/users/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if (config.users.impl === 'mock' || config.env === 'test' || config.env === 'dev
}

// FedRAMP has no back office proxy...
else if (config.users.impl === 'noop' || config.user.auth === '') {
else if (config.users.impl === 'noop' || config.users.auth === '') {
module.exports = require('./noop');
}

Expand Down

0 comments on commit eb0d613

Please sign in to comment.