Skip to content

Commit

Permalink
Update UserStoryController
Browse files Browse the repository at this point in the history
  • Loading branch information
Kopczuch committed Jun 7, 2024
1 parent 9a9fdb8 commit 42024e0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ namespace PlanningPoker.Controllers
{
[Route("api/userStories")]
[ApiController]
public class UserStoryController : ControllerBase
public class UserStoryApiController : ControllerBase
{
private readonly IUserStoryService _userStoryService;

public UserStoryController(IUserStoryService userStoryService)
public UserStoryApiController(IUserStoryService userStoryService)
{
_userStoryService = userStoryService;
}
Expand Down

0 comments on commit 42024e0

Please sign in to comment.