Added missing http-user and place them to $downloadProps
This commit is contained in:
parent
17ad2c4bfa
commit
bb8e6d961f
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
.DS_STORE
|
||||
.idea
|
||||
.git
|
||||
|
|
|
@ -37,7 +37,7 @@ angular
|
|||
])
|
||||
.constant('$downloadProps', [ // Similar to starred Quick Access properties but for adding new downloads.
|
||||
// go to Advance Download Options when adding a new download to view the list of possible options
|
||||
'pause', 'dir', 'max-connection-per-server'
|
||||
'http-user', 'http-passwd', 'pause', 'dir', 'max-connection-per-server'
|
||||
])
|
||||
.constant('$globalTimeout', 1000) // interval to update the individual downloads
|
||||
;
|
||||
|
|
|
@ -292,6 +292,11 @@ angular.module('webui.services.settings', [])
|
|||
options: ["true", "false"],
|
||||
},
|
||||
|
||||
"http-user": {
|
||||
val: '',
|
||||
desc: "Set HTTP username.",
|
||||
},
|
||||
|
||||
"http-passwd": {
|
||||
val: '',
|
||||
desc: "Set HTTP password.",
|
||||
|
|
Loading…
Reference in New Issue
Block a user