Add domain names to certificates table

This commit is contained in:
Jamie Curnow
2024-09-15 22:33:11 +10:00
parent d121de808c
commit d2048e540d
4 changed files with 19 additions and 4 deletions

View File

@ -12,6 +12,7 @@ import (
func GetByID(id uint) (Model, error) {
var m Model
err := m.LoadByID(id)
m.generateGravatar()
return m, err
}