2026-02-17 17:29:15 +00:00
|
|
|
package sync
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
2026-02-24 15:34:53 +00:00
|
|
|
"net/http"
|
2026-02-17 17:29:15 +00:00
|
|
|
|
|
|
|
|
"github.com/Gleipnir-Technology/nidus-sync/db/models"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type contentDownloadPlaceholder struct{}
|
|
|
|
|
|
2026-02-24 15:34:53 +00:00
|
|
|
func getDownloadList(ctx context.Context, r *http.Request, org *models.Organization, user *models.User) (*response[contentDownloadPlaceholder], *errorWithStatus) {
|
|
|
|
|
content := contentDownloadPlaceholder{}
|
|
|
|
|
return newResponse("sync/download-list.html", content), nil
|
2026-02-17 17:29:15 +00:00
|
|
|
}
|