mirror of
https://github.com/Icinga/icingadb.git
synced 2026-05-28 04:35:54 -04:00
Merge pull request #178 from Icinga/bugfix/user-notificationsenabled-not-cast-to-db-bool
User: Fix NotificationsEnabled not cast to DB bool
This commit is contained in:
commit
b8586d8310
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ func (u *User) UpdateValues() []interface{} {
|
|||
u.DisplayName,
|
||||
u.EMail,
|
||||
u.Pager,
|
||||
u.NotificationsEnabled,
|
||||
utils.Bool[u.NotificationsEnabled],
|
||||
utils.EncodeChecksum(u.PeriodId),
|
||||
utils.NotificationStatesToBitMask(u.States),
|
||||
utils.NotificationTypesToBitMask(u.Types),
|
||||
|
|
|
|||
Loading…
Reference in a new issue