Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Client/Models/ChatMessage.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AdminDashboard.Wasm.Models
namespace BlazorHero.CleanArchitecture.Client.Models
{
public class ChatMessage
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Models/ChatUser.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using MudBlazor;

namespace AdminDashboard.Wasm.Models
namespace BlazorHero.CleanArchitecture.Client.Models
{
public class ChatUser
{
Expand Down
2 changes: 1 addition & 1 deletion src/Server/Controllers/Identity/RoleClaimController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;

namespace BlazorHero.CleanArchitecture.Server.Controllers
namespace BlazorHero.CleanArchitecture.Server.Controllers.Identity
{
[Route("api/identity/roleClaim")]
[ApiController]
Expand Down
6 changes: 3 additions & 3 deletions src/Server/Controllers/Identity/RoleController.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using BlazorHero.CleanArchitecture.Application.Interfaces.Services.Identity;
using System.Threading.Tasks;
using BlazorHero.CleanArchitecture.Application.Interfaces.Services.Identity;
using BlazorHero.CleanArchitecture.Application.Requests.Identity;
using BlazorHero.CleanArchitecture.Shared.Constants.Permission;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using System.Threading.Tasks;

namespace BlazorHero.CleanArchitecture.Server.Controllers
namespace BlazorHero.CleanArchitecture.Server.Controllers.Identity
{
[Route("api/identity/role")]
[ApiController]
Expand Down
1 change: 0 additions & 1 deletion src/Server/Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
<ProjectReference Include="..\Infrastructure.Shared\Infrastructure.Shared.csproj" />
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
<ProjectReference Include="..\Shared\Shared.csproj" />
<ProjectReference Include="..\Client\Client.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Files\Images\ProfilePictures\" />
Expand Down