37 lines
705 B
JavaScript
37 lines
705 B
JavaScript
async function register ({
|
|
registerIdAndPassAuth,
|
|
peertubeHelpers
|
|
}) {
|
|
registerIdAndPassAuth({
|
|
authName: 'laguna-bad-auth',
|
|
|
|
onLogout: () => {
|
|
peertubeHelpers.logger.info('On logout for auth 3 - 1')
|
|
},
|
|
|
|
getWeight: () => 5,
|
|
|
|
login (body) {
|
|
if (body.id === 'laguna' && body.password === 'laguna password') {
|
|
return Promise.resolve({
|
|
username: 'laguna',
|
|
email: 'laguna@example.com',
|
|
displayName: 'Laguna Loire'
|
|
})
|
|
}
|
|
|
|
return null
|
|
}
|
|
})
|
|
}
|
|
|
|
async function unregister () {
|
|
return
|
|
}
|
|
|
|
module.exports = {
|
|
register,
|
|
unregister
|
|
}
|
|
|
|
// ###########################################################################
|