From dc07b5d028f2ea109207f617deb279e42d80dde5 Mon Sep 17 00:00:00 2001 From: choir27 Date: Mon, 1 Jul 2024 15:35:55 -0400 Subject: [PATCH] docs: update functions api reference --- app/controllers/api/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/api/functions.php b/app/controllers/api/functions.php index 66d97c61b2..f26b0fc86a 100644 --- a/app/controllers/api/functions.php +++ b/app/controllers/api/functions.php @@ -838,7 +838,7 @@ App::put('/v1/functions/:functionId') App::get('/v1/functions/:functionId/deployments/:deploymentId/download') ->groups(['api', 'functions']) - ->desc('Download Deployment') + ->desc('Download deployment') ->label('scope', 'functions.read') ->label('sdk.auth', [APP_AUTH_TYPE_KEY]) ->label('sdk.namespace', 'functions') @@ -923,7 +923,7 @@ App::get('/v1/functions/:functionId/deployments/:deploymentId/download') App::patch('/v1/functions/:functionId/deployments/:deploymentId') ->groups(['api', 'functions']) - ->desc('Update function deployment') + ->desc('Update deployment') ->label('scope', 'functions.write') ->label('event', 'functions.[functionId].deployments.[deploymentId].update') ->label('audits.event', 'deployment.update')