mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 08:07:10 -07:00
New: Forms authentication
This commit is contained in:
parent
7c38fcb9f3
commit
3c756348eb
35 changed files with 707 additions and 81 deletions
|
@ -296,13 +296,14 @@ define(
|
|||
|
||||
app.addInitializer(function () {
|
||||
|
||||
var footerText = serverStatusModel.get('version');
|
||||
var version = serverStatusModel.get('version');
|
||||
var branch = serverStatusModel.get('branch');
|
||||
|
||||
if (serverStatusModel.get('branch') !== 'master') {
|
||||
footerText += '</br>' + serverStatusModel.get('branch');
|
||||
$('#footer-region .version').html(version);
|
||||
|
||||
if (branch !== 'master') {
|
||||
$('#footer-region .branch').html(branch);
|
||||
}
|
||||
|
||||
$('#footer-region .version').html(footerText);
|
||||
});
|
||||
|
||||
return app;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue