2c8344faf9
They are in different folders and all loaded in controllers/router.go. This means that you only have to create a folder with a router.go file and import this folder in main router.go to add a handler.
22 lignes
741 o
Go
22 lignes
741 o
Go
package moderatorController
|
|
|
|
import (
|
|
"github.com/NyaaPantsu/nyaa/models"
|
|
"github.com/NyaaPantsu/nyaa/models/comments"
|
|
"github.com/NyaaPantsu/nyaa/models/reports"
|
|
"github.com/NyaaPantsu/nyaa/models/torrents"
|
|
"github.com/NyaaPantsu/nyaa/models/users"
|
|
"github.com/NyaaPantsu/nyaa/templates"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// IndexModPanel : Controller for showing index page of Mod Panel
|
|
func IndexModPanel(c *gin.Context) {
|
|
offset := 10
|
|
torrents, _, _ := torrents.FindAll(offset, 0)
|
|
users, _ := users.FindUsersForAdmin(offset, 0)
|
|
comments, _ := comments.FindAll(offset, 0, "", "")
|
|
torrentReports, _, _ := reports.GetAll(offset, 0)
|
|
|
|
templates.PanelAdmin(c, torrents, models.TorrentReportsToJSON(torrentReports), users, comments)
|
|
}
|