feat: implement system statistics tracking, commit management controllers, and associated database migrations
All checks were successful
Build and Release / release (push) Successful in 1m49s
All checks were successful
Build and Release / release (push) Successful in 1m49s
This commit is contained in:
@@ -16,6 +16,12 @@ func ProjectRoutes(
|
||||
userRepo repositories.UserRepository,
|
||||
) {
|
||||
route := app.Group("/projects")
|
||||
|
||||
route.Get(
|
||||
"/commits/:commitId",
|
||||
middlewares.JwtAccess(userRepo),
|
||||
commitController.GetCommitByID,
|
||||
)
|
||||
|
||||
route.Post(
|
||||
"/:id/commits",
|
||||
@@ -35,6 +41,7 @@ func ProjectRoutes(
|
||||
commitController.GetProjectCommits,
|
||||
)
|
||||
|
||||
|
||||
route.Post(
|
||||
"/:id/members",
|
||||
middlewares.JwtAccess(userRepo),
|
||||
|
||||
Reference in New Issue
Block a user