15 lines
500 B
Go
15 lines
500 B
Go
package classrooms
|
|
|
|
import (
|
|
authmw "boostai-backend/internal/middleware"
|
|
|
|
"github.com/gofiber/fiber/v2"
|
|
)
|
|
|
|
func RegisterRoutes(app fiber.Router, auth *authmw.AuthMiddleware, h *Handler) {
|
|
app.Get("/teachers/:teacherId/classrooms", h.ListClassroomsByTeacher)
|
|
app.Get("/classrooms/:classroomId/students", h.ListStudentsForClassroom)
|
|
app.Post("/classrooms", auth.RequireTeacher(), h.CreateClassroom)
|
|
app.Post("/classrooms/:classroomId/students", auth.RequireTeacher(), h.AddStudentToClassroom)
|
|
}
|