Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/PLATFORM_ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ Example from the admin API (a real production route):
# From admin/config.yaml -- the engine serves its own API using pipelines
- method: GET
path: "/api/v1/admin/companies/{id}"
handler: admin-v1-queries
handler: admin-queries
middlewares: [admin-cors, admin-auth-middleware]
pipeline:
steps:
Expand Down
4 changes: 2 additions & 2 deletions module/api_v1_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
)

// V1APIHandler handles the /api/v1/admin/ CRUD endpoints for companies, projects,
// and workflows. It is wired as a fallback on the admin-v1-queries and
// admin-v1-commands CQRS handler modules.
// and workflows. It is wired as a fallback on the admin-queries and
// admin-commands CQRS handler modules.
type V1APIHandler struct {
store *V1Store
jwtSecret string
Expand Down
Loading