feat(RunnerController): add selfservice_links parameter to getRunners method

This commit is contained in:
2025-04-17 20:45:28 +02:00
parent 4723d9738e
commit a50d72f2f5
3 changed files with 5 additions and 5 deletions

View File

@@ -84,6 +84,6 @@ export class Runner extends Participant {
* Turns this entity into it's response class.
*/
public toResponse(): ResponseRunner {
return new ResponseRunner(this);
return new ResponseRunner(this, true);
}
}