mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
49c6191bb5
no logic change, just path updates
25 lines
590 B
JavaScript
25 lines
590 B
JavaScript
/**
|
|
* API mock for login endpoint
|
|
* @param {object} config configuration of api call
|
|
* @returns {promise}
|
|
*/
|
|
export default function(config) {
|
|
return new Promise(function(resolve, reject) {
|
|
const body = JSON.parse(config.body);
|
|
if (body.username === 'sam' && body.password === '1234') {
|
|
return new Promise(function(resolve) {
|
|
resolve({
|
|
json: function() {
|
|
return {
|
|
username: 'sam',
|
|
token: 'TEST_TOKEN'
|
|
}
|
|
}
|
|
});
|
|
});
|
|
} else {
|
|
throw Error('Unauthorized');
|
|
}
|
|
});
|
|
}
|