Then get the organization settings page to work again. Tons of other stuff is broken now.
26 lines
478 B
Go
26 lines
478 B
Go
package rmo
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/Gleipnir-Technology/nidus-sync/html"
|
|
)
|
|
|
|
type ContentRegisterNotificationsComplete struct {
|
|
ReportID string
|
|
}
|
|
type District struct {
|
|
LogoURL string
|
|
Name string
|
|
}
|
|
|
|
func getRegisterNotificationsComplete(w http.ResponseWriter, r *http.Request) {
|
|
report := r.URL.Query().Get("report")
|
|
html.RenderOrError(
|
|
w,
|
|
"rmo/register-notifications-complete.html",
|
|
ContentRegisterNotificationsComplete{
|
|
ReportID: report,
|
|
},
|
|
)
|
|
}
|