Implement code review changes

This commit is contained in:
John Baublitz
2018-05-25 14:14:33 -04:00
committed by bergquist
parent 5c5951bc42
commit bdf433594a
6 changed files with 33 additions and 21 deletions

View File

@@ -1,11 +1,16 @@
package models
import (
"errors"
"time"
"github.com/grafana/grafana/pkg/components/simplejson"
)
var (
ErrNotificationFrequencyNotFound = errors.New("Notification frequency not specified")
)
type AlertNotification struct {
Id int64 `json:"id"`
OrgId int64 `json:"-"`