Skip to content

Commit 02feded

Browse files
committed
Added autodiagnotifications value for accounts
1 parent a17cf85 commit 02feded

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

changelog.adoc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file.
66

77
(Placeholder for unreleased content)
88

9+
== 2021-08-25 v1.2.2
10+
11+
=== Added
12+
13+
Added the `autodiagnotifications` option to account creation and updates, defaulting
14+
to `false`.
15+
916
== 2021-08-25 v1.2.1
1017

1118
=== Added

lib/nodeping/account_structs/subaccount.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ defmodule NodePing.Accounts.SubAccount do
66
@enforce_keys [:contactname, :email, :timezone, :location]
77
defstruct name: nil,
88
contactname: nil,
9+
autodiagnotifications: false,
910
email: nil,
1011
timezone: nil,
1112
location: nil,

lib/nodeping/account_structs/updateaccount.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ defmodule NodePing.Accounts.UpdateAccount do
55

66
defstruct name: nil,
77
timezone: nil,
8+
autodiagnotifications: false,
89
location: nil,
910
emailme: nil,
1011
status: nil

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule NodePing.MixProject do
44
def project do
55
[
66
app: :nodeping,
7-
version: "1.2.1",
7+
version: "1.2.2",
88
elixir: "~> 1.10",
99
start_permanent: Mix.env() == :prod,
1010
description: description(),

0 commit comments

Comments
 (0)