mirror of https://github.com/statping/statping
11 lines
233 B
Go
11 lines
233 B
Go
![]() |
package notifications
|
||
|
|
||
|
import "github.com/statping/statping/utils"
|
||
|
|
||
|
// AfterFind for Notification will set the timezone
|
||
|
func (n *Notification) AfterFind() (err error) {
|
||
|
n.CreatedAt = utils.Now()
|
||
|
n.UpdatedAt = utils.Now()
|
||
|
return
|
||
|
}
|