aboutsummaryrefslogtreecommitdiffhomepage
path: root/api/routes/github.js
diff options
context:
space:
mode:
Diffstat (limited to 'api/routes/github.js')
-rw-r--r--api/routes/github.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/api/routes/github.js b/api/routes/github.js
index 78459db..529af4a 100644
--- a/api/routes/github.js
+++ b/api/routes/github.js
@@ -116,11 +116,11 @@ const getKeyboardFiles = async (req, res, next) => {
}
const updateKeyboardFiles = async (req, res, next) => {
- const { installationId, repository } = req.params
+ const { installationId, repository, branch } = req.params
const { keymap, layout } = req.body
try {
- await commitChanges(installationId, repository, layout, keymap)
+ await commitChanges(installationId, repository, branch, layout, keymap)
} catch (err) {
return next(err)
}
@@ -136,7 +136,7 @@ router.get('/authorize', authorize)
router.get('/installation/:installationId/:repository/branches', authenticate, getBranches)
router.get('/installation', authenticate, getInstallation)
router.get('/keyboard-files/:installationId/:repository', authenticate, getKeyboardFiles)
-router.post('/keyboard-files/:installationId/:repository', authenticate, updateKeyboardFiles)
+router.post('/keyboard-files/:installationId/:repository/:branch', authenticate, updateKeyboardFiles)
router.post('/webhook', receiveWebhook)
router.use(handleError)