0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-23 22:27:34 -05:00
verdaccio/test/unit/partials/plugin/authenticate.success.js

11 lines
256 B
JavaScript
Raw Normal View History

module.exports = function ( ) {
return {
authenticate( user, pass, callback ) {
// https://verdaccio.org/docs/en/dev-plugins#onsuccess
2019-10-02 14:14:19 -05:00
// this is a successful login and return a simple group
callback(null, ['test']);
}
};
};