Skip to content

Commit 4c70d20

Browse files
committed
Fix syntax error
1 parent 1a5c56c commit 4c70d20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coderd/coderd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func New(options *Options) http.Handler {
6363
r.Use(httpmw.ExtractProjectParam(options.Database))
6464
r.Get("/", projects.project)
6565
r.Route("/history", func(r chi.Router) {
66-
r.Get("/", projects.projectHistory)
66+
r.Get("/", projects.allProjectHistory)
6767
r.Post("/", projects.createProjectHistory)
6868
})
6969
})

0 commit comments

Comments
 (0)