mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-31 06:42:03 +00:00
fixing auto verify for kanban issues
This commit is contained in:
18
apps/server/src/routes/github/index.ts
Normal file
18
apps/server/src/routes/github/index.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* GitHub routes - HTTP API for GitHub integration
|
||||
*/
|
||||
|
||||
import { Router } from 'express';
|
||||
import { createCheckGitHubRemoteHandler } from './routes/check-github-remote.js';
|
||||
import { createListIssuesHandler } from './routes/list-issues.js';
|
||||
import { createListPRsHandler } from './routes/list-prs.js';
|
||||
|
||||
export function createGitHubRoutes(): Router {
|
||||
const router = Router();
|
||||
|
||||
router.post('/check-remote', createCheckGitHubRemoteHandler());
|
||||
router.post('/issues', createListIssuesHandler());
|
||||
router.post('/prs', createListPRsHandler());
|
||||
|
||||
return router;
|
||||
}
|
||||
Reference in New Issue
Block a user