mirror of
https://git.proxmox.com/git/proxmox
synced 2025-10-04 11:59:37 +00:00
notify: gotify: use constant from http crate for 'Authorization' header
Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
This commit is contained in:
parent
6d4c115f05
commit
4097d3697d
@ -41,7 +41,7 @@ proxmox-uuid = { workspace = true, features = ["serde"] }
|
|||||||
default = ["sendmail", "gotify", "smtp", "webhook"]
|
default = ["sendmail", "gotify", "smtp", "webhook"]
|
||||||
mail-forwarder = ["dep:mail-parser", "dep:proxmox-sys", "proxmox-sendmail/mail-forwarder"]
|
mail-forwarder = ["dep:mail-parser", "dep:proxmox-sys", "proxmox-sendmail/mail-forwarder"]
|
||||||
sendmail = ["dep:proxmox-sys", "dep:base64", "dep:proxmox-sendmail"]
|
sendmail = ["dep:proxmox-sys", "dep:base64", "dep:proxmox-sendmail"]
|
||||||
gotify = ["dep:proxmox-http"]
|
gotify = ["dep:proxmox-http", "dep:http"]
|
||||||
pve-context = ["dep:proxmox-sys"]
|
pve-context = ["dep:proxmox-sys"]
|
||||||
pbs-context = ["dep:proxmox-sys"]
|
pbs-context = ["dep:proxmox-sys"]
|
||||||
smtp = ["dep:lettre"]
|
smtp = ["dep:lettre"]
|
||||||
|
@ -132,7 +132,7 @@ impl Endpoint for GotifyEndpoint {
|
|||||||
.map_err(|err| Error::NotifyFailed(self.name().to_string(), err.into()))?;
|
.map_err(|err| Error::NotifyFailed(self.name().to_string(), err.into()))?;
|
||||||
let extra_headers = HashMap::from([
|
let extra_headers = HashMap::from([
|
||||||
(
|
(
|
||||||
"Authorization".into(),
|
http::header::AUTHORIZATION.to_string(),
|
||||||
format!("Bearer {}", self.private_config.token),
|
format!("Bearer {}", self.private_config.token),
|
||||||
),
|
),
|
||||||
("X-Gotify-Key".into(), self.private_config.token.clone()),
|
("X-Gotify-Key".into(), self.private_config.token.clone()),
|
||||||
|
Loading…
Reference in New Issue
Block a user