mirror of
https://github.com/wkulhanek/bonob.git
synced 2025-12-21 17:33:29 +01:00
Tests for browsing of artists and albums
This commit is contained in:
@@ -71,7 +71,7 @@ function server(
|
||||
|
||||
app.post(LOGIN_ROUTE, (req, res) => {
|
||||
const { username, password, linkCode } = req.body;
|
||||
const authResult = musicService.login({
|
||||
const authResult = musicService.generateToken({
|
||||
username,
|
||||
password,
|
||||
});
|
||||
@@ -107,7 +107,7 @@ function server(
|
||||
res.send("");
|
||||
});
|
||||
|
||||
bindSmapiSoapServiceToExpress(app, SOAP_PATH, webAddress, linkCodes);
|
||||
bindSmapiSoapServiceToExpress(app, SOAP_PATH, webAddress, linkCodes, musicService);
|
||||
|
||||
return app;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user