feat: only show files (close #735)

This commit is contained in:
Xhofe
2022-03-13 19:37:58 +08:00
parent 7be476cce0
commit 15651a4356
2 changed files with 20 additions and 7 deletions

View File

@ -6,11 +6,12 @@ import (
)
type Meta struct {
ID uint `json:"id" gorm:"primaryKey"`
Path string `json:"path" gorm:"unique" binding:"required"`
Password string `json:"password"`
Hide string `json:"hide"`
Upload bool `json:"upload"`
ID uint `json:"id" gorm:"primaryKey"`
Path string `json:"path" gorm:"unique" binding:"required"`
Password string `json:"password"`
Hide string `json:"hide"`
Upload bool `json:"upload"`
OnlyShows string `json:"only_shows"`
}
func GetMetaByPath(path string) (*Meta, error) {