Added soundtrack filter for missing links

This commit is contained in:
2018-03-25 01:54:01 +01:00
parent db64a86981
commit ee4dc577d0
4 changed files with 58 additions and 0 deletions

View File

@ -23,6 +23,7 @@ import (
"github.com/animenotifier/notify.moe/pages/editor"
"github.com/animenotifier/notify.moe/pages/editor/filteranime"
"github.com/animenotifier/notify.moe/pages/editor/filtercompanies"
"github.com/animenotifier/notify.moe/pages/editor/filtersoundtracks"
"github.com/animenotifier/notify.moe/pages/embed"
"github.com/animenotifier/notify.moe/pages/episode"
"github.com/animenotifier/notify.moe/pages/explore"
@ -272,6 +273,9 @@ func Configure(app *aero.Application) {
// Editor - Companies
l.Page("/editor/companies/description", filtercompanies.NoDescription)
// Editor - Soundtracks
l.Page("/editor/soundtracks/links", filtersoundtracks.NoLinks)
// Log
l.Page("/log", editlog.Get)