blob: edfc870c026780e85eb98d5cdabfe72ecf1d3561 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
async function register ({
registerIdAndPassAuth,
peertubeHelpers
}) {
registerIdAndPassAuth({
type: 'id-and-pass',
onLogout: () => {
peertubeHelpers.logger.info('On logout for auth 2 - 1')
},
getWeight: () => 30,
login (body) {
if (body.id === 'laguna' && body.password === 'laguna password') {
return Promise.resolve({
username: 'laguna',
email: 'laguna@example.com'
})
}
return null
}
})
}
async function unregister () {
return
}
module.exports = {
register,
unregister
}
// ###########################################################################
|