httpd: Add `path` query param to rad-web `auth_url`
This helps the web implementation to navigate the user directly to the project from where he ran the command, or to the url the user was navigating.
1 file changed
+24
-1
29cb5c08
→
e799a7cc
modified radicle-httpd/src/commands/web.rs
@@ -6,7 +6,7 @@ use std::time::Duration;
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -28,6 +28,7 @@ Options
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -44,6 +45,7 @@ pub struct SessionInfo {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -55,6 +57,7 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -66,6 +69,10 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -99,6 +106,7 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -168,6 +176,21 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|