Fix issue when creating root category for new user
sq
This commit is contained in:
parent
d55ba5c3c7
commit
fc2b066c12
|
@ -39,9 +39,6 @@ var (
|
||||||
)
|
)
|
||||||
|
|
||||||
func (c *Category) BeforeSave(tx *gorm.DB) error {
|
func (c *Category) BeforeSave(tx *gorm.DB) error {
|
||||||
if c.ParentID == c.ID {
|
|
||||||
return ERROR_CATEGORY_SELF_REFERENCING
|
|
||||||
}
|
|
||||||
if c.ParentID != 0 {
|
if c.ParentID != 0 {
|
||||||
var parent Category
|
var parent Category
|
||||||
if err := tx.Find(&parent, c.ParentID).Error; err != nil {
|
if err := tx.Find(&parent, c.ParentID).Error; err != nil {
|
||||||
|
@ -63,3 +60,10 @@ func (c *Category) BeforeSave(tx *gorm.DB) error {
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *Category) AfterCreate(tx *gorm.DB) error {
|
||||||
|
if c.ParentID == c.ID {
|
||||||
|
return ERROR_CATEGORY_SELF_REFERENCING
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user