From: Christian Ebner <c.ebner@proxmox.com>
To: pdm-devel@lists.proxmox.com
Subject: [pdm-devel] [PATCH datacenter-manager] ui: add wizard: note that login currently only works for PBS 4
Date: Fri, 26 Sep 2025 17:26:39 +0200 [thread overview]
Message-ID: <20250926152639.729480-1-c.ebner@proxmox.com> (raw)
Due to an incompatibility, the login currently only works with the
PBS 4 API, logins to PBS 3 will fail with 401 error code.
Adds an information to the remote add settings page until the
underlying issue has been diagnosed and fixed, so users are made
aware of this.
Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
---
ui/src/remotes/wizard_page_info.rs | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/ui/src/remotes/wizard_page_info.rs b/ui/src/remotes/wizard_page_info.rs
index 7fffdd1..959764f 100644
--- a/ui/src/remotes/wizard_page_info.rs
+++ b/ui/src/remotes/wizard_page_info.rs
@@ -379,6 +379,21 @@ impl Component for PdmWizardPageInfo {
let content = Column::new()
.class(FlexFit)
.with_child(Row::new().with_child(input_panel))
+ .with_child(
+ Row::new()
+ .padding(2)
+ .gap(2)
+ .class(css::AlignItems::Center)
+ .with_optional_child(
+ if props.remote_type == RemoteType::Pbs && self.user_mode {
+ Some(tr!(
+ "Note: Login currently requires Proxmox Backup Sever version 4"
+ ))
+ } else {
+ None
+ },
+ ),
+ )
.with_child(
Row::new()
.padding(2)
--
2.47.3
_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel
next reply other threads:[~2025-09-26 15:26 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-26 15:26 Christian Ebner [this message]
2025-09-26 17:28 ` Thomas Lamprecht
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250926152639.729480-1-c.ebner@proxmox.com \
--to=c.ebner@proxmox.com \
--cc=pdm-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox