1 Commits

Author SHA1 Message Date
Dreaded_X 83f7d33efa fix: No default value for advertise routes
Committed / committed (pull_request) Successful in 41s
CI / cargo shear (pull_request) Successful in 5m57s
CI / prek (pull_request) Successful in 6m22s
2026-04-13 03:05:35 +02:00
3 changed files with 5 additions and 2 deletions
+2 -1
View File
@@ -309,7 +309,8 @@
"type": [
"boolean",
"null"
]
],
"default": null
},
"authKey": {
"anyOf": [
+2 -1
View File
@@ -214,7 +214,8 @@
"type": [
"boolean",
"null"
]
],
"default": null
},
"authKey": {
"anyOf": [
+1
View File
@@ -40,6 +40,7 @@ enum NodeArch {
#[serde(rename_all = "camelCase", deny_unknown_fields)]
struct Tailscale {
auth_key: Secret,
#[serde(default)]
advertise_routes: bool,
#[serde(default)]
server: Option<String>,