* - Using cdnjs not nuget on bootstrap and signalr. - Bootstrap modal used for add, edit details and delete. * EditForm inside modal-content * Top close button action added * Removed unused using. * DeleteCookies moved inside AuthService * ApplicationCore removed from BlazorAdmin dependencies * SecureHttpClient removed * Logout from identity manager added * last thing to do in logout from admin is LogoutIdentityManager. * JSRuntime used in AuthService without pass to the functions * Link fixed when logout from MVC
18 lines
649 B
Plaintext
18 lines
649 B
Plaintext
@using System.Net.Http
|
|
@using System.Net.Http.Json
|
|
@using Microsoft.AspNetCore.Authorization;
|
|
@using Microsoft.AspNetCore.Components.Authorization
|
|
@using Microsoft.AspNetCore.Components.Forms
|
|
@using Microsoft.AspNetCore.Components.Routing
|
|
@using Microsoft.AspNetCore.Components.Web
|
|
@using Microsoft.AspNetCore.Components.WebAssembly.Http
|
|
@using Microsoft.JSInterop
|
|
@using BlazorAdmin
|
|
@using BlazorAdmin.Shared
|
|
@using BlazorAdmin.Services
|
|
@using BlazorAdmin.Services.CatalogBrandService
|
|
@using BlazorAdmin.Services.CatalogItemService
|
|
@using BlazorAdmin.Services.CatalogTypeService
|
|
@using Microsoft.Extensions.Logging
|
|
@using BlazorAdmin.JavaScript
|