Skip to content

Commit b8a9404

Browse files
author
Your Name
committed
fix: github tests fix
1 parent 87841a5 commit b8a9404

2 files changed

Lines changed: 1156 additions & 0 deletions

File tree

internal/http/controllers/v1/management/controller.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
package v1
22

33
import (
4+
"net/http"
5+
46
"github.com/jmoiron/sqlx"
57
"github.com/lunogram/platform/internal/config"
8+
mgmtoapi "github.com/lunogram/platform/internal/http/controllers/v1/management/oapi"
69
"github.com/lunogram/platform/internal/providers"
710
"github.com/lunogram/platform/internal/pubsub"
811
"github.com/lunogram/platform/internal/storage"
912
"github.com/lunogram/platform/internal/store/management"
13+
openapi_types "github.com/oapi-codegen/runtime/types"
1014
"go.uber.org/zap"
1115
)
1216

@@ -58,3 +62,7 @@ type Controller struct {
5862
*AuthController
5963
*ApiKeysController
6064
}
65+
66+
func (c *Controller) ListJourneyEntrances(w http.ResponseWriter, r *http.Request, projectID openapi_types.UUID, journeyID openapi_types.UUID, params mgmtoapi.ListJourneyEntrancesParams) {
67+
w.WriteHeader(http.StatusNotImplemented)
68+
}

0 commit comments

Comments
 (0)