2019-11-21 17:35:19 -05:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
2019-11-29 06:59:40 -05:00
|
|
|
// See LICENSE.txt for license information.
|
2019-11-21 17:35:19 -05:00
|
|
|
|
|
|
|
|
package einterfaces
|
|
|
|
|
|
|
|
|
|
import (
|
2023-06-11 01:24:35 -04:00
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
2023-10-06 16:43:21 -04:00
|
|
|
"github.com/mattermost/mattermost/server/public/shared/request"
|
2019-11-21 17:35:19 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type NotificationInterface interface {
|
2025-09-10 09:11:32 -04:00
|
|
|
GetNotificationMessage(rctx request.CTX, ack *model.PushNotificationAck, userID string) (*model.PushNotification, *model.AppError)
|
2019-11-21 17:35:19 -05:00
|
|
|
CheckLicense() *model.AppError
|
|
|
|
|
}
|