Updated the test edit page (still need to do the post page)
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2025-08-10 01:44:33 -04:00
parent c19bb2108c
commit 60d8554cf1
4 changed files with 60 additions and 2 deletions

View File

@ -1,6 +1,8 @@
package models
import (
"strconv"
"gorm.io/gorm"
)
@ -16,3 +18,7 @@ type Benchmark struct {
// has many results
Results []Result
}
func (b *Benchmark) StringID() string {
return strconv.Itoa(int(b.ID))
}