aboutsummaryrefslogtreecommitdiff
path: root/packages/server/src/routes/api/v1/repo/branches.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/server/src/routes/api/v1/repo/branches.ts')
-rw-r--r--packages/server/src/routes/api/v1/repo/branches.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/server/src/routes/api/v1/repo/branches.ts b/packages/server/src/routes/api/v1/repo/branches.ts
index c36463d..99f0327 100644
--- a/packages/server/src/routes/api/v1/repo/branches.ts
+++ b/packages/server/src/routes/api/v1/repo/branches.ts
@@ -24,6 +24,11 @@ export default function(fastify: FastifyInstance, opts: FastifyPluginOptions, do
fastify.route<Route>({
method: "GET",
url: "/branches/:branch",
+ schema: {
+ params: {
+ branch: { type: "string" }
+ }
+ },
handler: async(req, reply) => {
const branch = await Branch.lookup(req.repository, req.params.branch);