Skip to content

Commit

Permalink
feat: mark exercise mode as todo
Browse files Browse the repository at this point in the history
  • Loading branch information
GZTimeWalker committed Jan 23, 2024
1 parent 5a8280a commit 454cf09
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/GZCTF/Controllers/ExerciseController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ namespace GZCTF.Controllers;
[ProducesResponseType(typeof(RequestResponse), StatusCodes.Status401Unauthorized)]
[ProducesResponseType(typeof(RequestResponse), StatusCodes.Status403Forbidden)]
public class ExerciseController(
ILogger<ExerciseController> logger,
IExerciseInstanceRepository exerciseInstanceRepository,
IStringLocalizer<Program> localizer) : ControllerBase
ILogger<ExerciseController> _logger,
IExerciseInstanceRepository _exerciseInstanceRepository,
IStringLocalizer<Program> _localizer) : ControllerBase
{
// TODO: exercise mode support
}

0 comments on commit 454cf09

Please sign in to comment.