Add all of Ben's mocks for the new root pages
This commit is contained in:
parent
5d8366015c
commit
9613cac11a
21 changed files with 1593 additions and 141 deletions
14
sync/intelligence.go
Normal file
14
sync/intelligence.go
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue