diff options
author | notgne2 | 2020-10-10 10:31:55 -0700 |
---|---|---|
committer | notgne2 | 2020-10-10 10:31:55 -0700 |
commit | db8301a45796cd919cbfa085f85ac6288e73a8db (patch) | |
tree | 638d3554b03e50558c63432ee22fe3628d44b592 /src/utils/data.rs | |
parent | 3a92593bf9c4ca07a2b09888e4a3f7dff6c9c510 (diff) |
Add profile path option to profiles
Diffstat (limited to '')
-rw-r--r-- | src/utils/data.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/utils/data.rs b/src/utils/data.rs index 371c82d..f72f9a7 100644 --- a/src/utils/data.rs +++ b/src/utils/data.rs @@ -42,6 +42,8 @@ pub struct NodeSettings { pub struct ProfileSettings { pub path: String, pub bootstrap: Option<String>, + #[serde(rename(deserialize = "profilePath"))] + pub profile_path: Option<String>, } #[derive(Deserialize, Debug, Clone)] |