aboutsummaryrefslogtreecommitdiff
path: root/backend/api
diff options
context:
space:
mode:
Diffstat (limited to 'backend/api')
-rw-r--r--backend/api/api/Controllers/ExperimentController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/api/api/Controllers/ExperimentController.cs b/backend/api/api/Controllers/ExperimentController.cs
index 08354615..b599ca4e 100644
--- a/backend/api/api/Controllers/ExperimentController.cs
+++ b/backend/api/api/Controllers/ExperimentController.cs
@@ -61,7 +61,7 @@ namespace api.Controllers
return Ok(experiment);
}
- [HttpGet("get")]
+ [HttpGet("get/{id}")]
[Authorize(Roles = "User,Guest")]
public async Task<ActionResult<Experiment>> Get(string id)
{