Skip to content

Commit

Permalink
Add missing upside_down property alias, see #71
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBoot committed Aug 17, 2024
1 parent a07c3b6 commit 9c4d848
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix control sequences not being expanded in snippets, see [#60](https://github.com/BigBoot/AutoKuma/issues/60)
- Add missing `description` property, see [#61](https://github.com/BigBoot/AutoKuma/issues/61)
- Fix wrong name for `query` property of database monitors, see [#65](https://github.com/BigBoot/AutoKuma/issues/65)
- Add missing `upside_down` property alias, see [#71](https://github.com/BigBoot/AutoKuma/issues/71)

## [0.7.0] - 2024-07-15
### Added
Expand Down
1 change: 1 addition & 0 deletions kuma-client/src/models/monitor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ macro_rules! monitor_type {
pub retry_interval: Option<i32>,

#[serde(rename = "upsideDown")]
#[serde(alias = "upside_down")]
#[serde_as(as = "Option<DeserializeBoolLenient>")]
pub upside_down: Option<bool>,

Expand Down

0 comments on commit 9c4d848

Please sign in to comment.