Added reset password route

This commit is contained in:
Nedim
2023-10-30 19:21:43 +01:00
parent 75692d7b20
commit 72ccd5e71c
16 changed files with 531 additions and 33 deletions

View File

@@ -8,12 +8,17 @@ import (
type Notification struct {
gorm.Model
Title string
Title string
NotificationType string
Text string
CompanyID int
Text string
CompanyID int
}
type EmailNotification struct {
Subject string
Email string
Body string
}
type GetNotificationsResponse struct {
Type string `json:"type"`