Skip to content

Commit

Permalink
add: resources name
Browse files Browse the repository at this point in the history
  • Loading branch information
nixhantb committed Feb 15, 2024
1 parent 5f2c856 commit b2454ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace JobLeet.WebApi.JobLeet.Api.Controllers
{
[ApiController]
[Route("api/[controller]")]
[Route("api/v1/[controller]")]
public abstract class BaseApiController<T, TRepository> : ControllerBase where T : class where TRepository : IRepository<T>
{
protected readonly TRepository Repository;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
using JobLeet.WebApi.JobLeet.Api.Logging;
using JobLeet.WebApi.JobLeet.Api.Models.Common.V1;
using JobLeet.WebApi.JobLeet.Core.Interfaces.Common.V1;
using Microsoft.AspNetCore.Components;

using Microsoft.AspNetCore.Mvc;
namespace JobLeet.WebApi.JobLeet.Api.Controllers.Common.V1
{
[Route("api/v1/skills")]
Expand Down

0 comments on commit b2454ce

Please sign in to comment.