Skip to content

Commit

Permalink
fix(integrations): fix get integrations email struct (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-prosser authored Nov 4, 2024
1 parent 05f7ed0 commit 600b3ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Unreleased
- fix `get integrations`
- update `reinfer.io` urls to `reinfer.dev`
- fix validation when providing property filter as json
- add stop after on `get comments`
Expand Down
2 changes: 1 addition & 1 deletion api/src/resources/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ pub struct CustomApplicationConfig {
pub struct Mailbox {
#[serde(skip_serializing_if = "Option::is_none")]
pub disabled_reason: Option<DisabledReason>,
pub email: Email,
pub email: String,
pub enabled: bool,
#[serde(skip_serializing_if = "Option::is_none")]
pub folder_allowlist: Option<Vec<Vec<String>>>,
Expand Down

0 comments on commit 600b3ae

Please sign in to comment.