Skip to content

Commit

Permalink
Add helper link to connection definition frontend spec
Browse files Browse the repository at this point in the history
  • Loading branch information
paulkr committed Apr 19, 2024
1 parent 0b93333 commit cfcd9d5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 3 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
[workspace]
resolver = "2"
members = [
"api",
"event-core",
"gateway",
"watchdog",
]
members = ["api", "event-core", "gateway", "watchdog"]

[workspace.dependencies]
anyhow = "1.0.75"
async-recursion = "1.0.5"
async-trait = "0.1.74"
axum = {version = "0.7", features = ["macros"]}
axum = { version = "0.7", features = ["macros"] }
base64 = "0.21.5"
base64ct = { version = "1.6.0", features = ["alloc"] }
bson = "2.7.0"
Expand All @@ -34,7 +29,7 @@ futures-util = "0.3.28"
handlebars = "4.4.0"
http = "1.1.0"
http-serde-ext = "1.0.2"
integrationos-domain = "3.0.0"
integrationos-domain = "3.0.1"
js-sandbox-ios = "0.1.0"
jsonpath_lib = "0.3.0"
jsonwebtoken = "8.3.0"
Expand Down
2 changes: 2 additions & 0 deletions api/src/endpoints/connection_definition.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ pub struct CreateRequest {
pub category: String,
pub image: String,
pub tags: Vec<String>,
pub helper_link: Option<String>,
pub authentication: Vec<AuthenticationItem>,
pub auth_method: Option<AuthMethod>,
pub settings: Settings,
Expand Down Expand Up @@ -297,6 +298,7 @@ impl CrudRequest for CreateRequest {
category: self.category.clone(),
image: self.image.clone(),
tags: self.tags.clone(),
helper_link: self.helper_link.clone(),
},
connection_form,
},
Expand Down

0 comments on commit cfcd9d5

Please sign in to comment.