fix up git
This commit is contained in:
@@ -111,6 +111,8 @@ func main() {
|
||||
staff.Post("/auth/change-password", handlers.ChangePasswordHandler(gormDB))
|
||||
staff.Get("/auth/github/authorize", handlers.GitHubAuthorizeURLHandler(gormDB))
|
||||
staff.Get("/auth/github/status", handlers.GitHubStatusHandler(gormDB))
|
||||
staff.Get("/auth/github/repos", handlers.GitHubListReposHandler(gormDB))
|
||||
staff.Post("/auth/github/repos/bulk-delete", handlers.GitHubBulkDeleteReposHandler(gormDB))
|
||||
staff.Delete("/auth/github", handlers.GitHubDisconnectHandler(gormDB))
|
||||
|
||||
staff.Get("/stats", handlers.GetStatsHandler(gormDB))
|
||||
@@ -185,6 +187,7 @@ func main() {
|
||||
staff.Get("/exam-rooms/:id/submissions", handlers.ListExamSubmissionsHandler(gormDB))
|
||||
staff.Get("/exam-rooms/:id/submissions/download-all", handlers.DownloadAllExamSubmissionsHandler(gormDB))
|
||||
staff.Post("/exam-rooms/:id/submissions/publish-git", handlers.PublishExamSubmissionsGitHandler(gormDB))
|
||||
staff.Post("/exam-rooms/:id/submissions/publish-git-students", handlers.PublishExamSubmissionsGitPerStudentHandler(gormDB))
|
||||
staff.Patch("/exam-rooms/:id/git-settings", handlers.UpdateExamRoomGitSettingsHandler(gormDB))
|
||||
staff.Get("/exam-rooms/:id/submissions/:subId/download", handlers.DownloadExamSubmissionHandler(gormDB))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user