Add all of Ben's mocks for the new root pages

This commit is contained in:
Eli Ribble 2026-02-27 16:51:41 +00:00
parent 5d8366015c
commit 9613cac11a
No known key found for this signature in database
21 changed files with 1593 additions and 141 deletions

14
sync/intelligence.go Normal file
View file

@ -0,0 +1,14 @@
package sync
import (
"context"
"net/http"
"github.com/Gleipnir-Technology/nidus-sync/db/models"
)
type contentIntelligenceRoot struct{}
func getIntelligenceRoot(ctx context.Context, r *http.Request, org *models.Organization, user *models.User) (*response[contentIntelligenceRoot], *errorWithStatus) {
return newResponse("sync/intelligence-root.html", contentIntelligenceRoot{}), nil
}