Don't filter URLs

This commit is contained in:
Joakim Hellsén 2024-02-08 20:09:49 +01:00
commit b70b139c42
3 changed files with 1 additions and 104 deletions

View file

@ -178,15 +178,3 @@ type ParseResult struct {
func (d *TemplateData) GetDatabaseSizeAndFeedCount() {
d.DatabaseSize = GetDBSize()
}
type BadURLs struct {
gorm.Model
URL string `json:"url"`
Active bool `json:"active"`
}
type BadURLsMeta struct {
gorm.Model
URL string `json:"url"`
LastScraped time.Time `json:"lastScraped"`
}