Upstream sync

This commit is contained in:
Senad Uka
2023-10-13 11:48:14 +02:00
parent 7369739bdd
commit d01c1a0232
29 changed files with 563 additions and 444 deletions

View File

@@ -1,10 +1,9 @@
package models
import "github.com/jinzhu/gorm"
type TextTemplate struct {
gorm.Model
Value string
BaseModel
Name string `json:"name"`
Value string `json:"value"`
}
func (TextTemplate) Update() (bool, error) {