@4geit/swg-get-user-with-credentials-helper
v1.28.0
Published
return an account that corresponds to the passed credentials
Downloads
52
Keywords
Readme
@4geit/swg-get-user-with-credentials-helper
return an account that corresponds to the passed credentials
Installation
- A recommended way to install @4geit/swg-get-user-with-credentials-helper is through npm package manager using the following command:
npm i @4geit/swg-get-user-with-credentials-helper --save
Or use yarn
using the following command:
yarn add @4geit/swg-get-user-with-credentials-helper
- All you have to do is to import the
@4geit/swg-get-user-with-credentials-helper
package in your controller or mock file as below:
// ...
const swgGetUserWithCredentialsHelper = require('@4geit/swg-get-user-with-credentials-helper');
// ...
And use it with one of your endpoint controller as below:
// ...
module.exports = {
// ...
getItems: swgGetUserWithCredentialsHelper(
({ req, res, user }) => {
// ...
}
),
// ...
};