Basic calendar

This commit is contained in:
2017-11-22 11:51:59 +01:00
parent 3ccf385ad4
commit 23f66003b1
5 changed files with 133 additions and 0 deletions

View File

@ -11,6 +11,7 @@ import (
"github.com/animenotifier/notify.moe/pages/animelist"
"github.com/animenotifier/notify.moe/pages/animelistitem"
"github.com/animenotifier/notify.moe/pages/apiview"
"github.com/animenotifier/notify.moe/pages/calendar"
"github.com/animenotifier/notify.moe/pages/character"
"github.com/animenotifier/notify.moe/pages/charge"
"github.com/animenotifier/notify.moe/pages/companies"
@ -94,6 +95,9 @@ func Configure(app *aero.Application) {
// Characters
l.Page("/character/:id", character.Get)
// Calendar
l.Page("/calendar", calendar.Get)
// Companies
l.Page("/company/:id", company.Get)
l.Page("/company/:id/edit", company.Edit)