nidus-sync/rmo/quick.go

27 lines
478 B
Go
Raw Permalink Normal View History

package rmo
import (
"net/http"
"github.com/Gleipnir-Technology/nidus-sync/html"
)
type ContentRegisterNotificationsComplete struct {
ReportID string
}
type District struct {
LogoURL string
Name string
}
2026-01-17 01:13:27 +00:00
func getRegisterNotificationsComplete(w http.ResponseWriter, r *http.Request) {
report := r.URL.Query().Get("report")
html.RenderOrError(
2026-01-17 01:13:27 +00:00
w,
2026-02-09 22:35:12 +00:00
"rmo/register-notifications-complete.html",
ContentRegisterNotificationsComplete{
2026-01-17 01:13:27 +00:00
ReportID: report,
},
)
}