Engincan VESKE
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
6 additions and
7 deletions
-
abp_io/AbpIoLocalization/AbpIoLocalization/Admin/Localization/Resources/en.json
-
modules/cms-kit/src/Volo.CmsKit.EntityFrameworkCore/Volo/CmsKit/Blogs/EfCoreBlogFeatureRepository.cs
-
modules/cms-kit/src/Volo.CmsKit.EntityFrameworkCore/Volo/CmsKit/Blogs/EfCoreBlogPostRepository.cs
-
modules/permission-management/src/Volo.Abp.PermissionManagement.Web/Pages/AbpPermissionManagement/PermissionManagementModal.cshtml
|
|
|
@ -440,10 +440,8 @@ |
|
|
|
"VersionHistoryDeletionConfirmationMessage": "Are you sure you want to delete this version?", |
|
|
|
"CreateAbpConsultantLogoInfo": "Maximum file size: <b>1MB</b> <br/> Supported file types: <b>jpg, jpeg, png, SVG, WebP</b>", |
|
|
|
"UrlCode": "Url Code", |
|
|
|
"Save": "Save", |
|
|
|
"Icon": "Icon", |
|
|
|
"Clear": "Clear", |
|
|
|
"Cancel": "Cancel", |
|
|
|
"Permission:AbpConsultant": "ABP Consultant", |
|
|
|
"Menu:AbpConsultants": "ABP Consultants", |
|
|
|
"CreateAbpConsultant": "Create ABP Consultant", |
|
|
|
|
|
|
|
@ -10,9 +10,9 @@ using Volo.CmsKit.EntityFrameworkCore; |
|
|
|
|
|
|
|
namespace Volo.CmsKit.Blogs; |
|
|
|
|
|
|
|
public class EfCoreBlogFeatureRepository : EfCoreRepository<CmsKitDbContext, BlogFeature, Guid>, IBlogFeatureRepository |
|
|
|
public class EfCoreBlogFeatureRepository : EfCoreRepository<ICmsKitDbContext, BlogFeature, Guid>, IBlogFeatureRepository |
|
|
|
{ |
|
|
|
public EfCoreBlogFeatureRepository(IDbContextProvider<CmsKitDbContext> dbContextProvider) : base(dbContextProvider) |
|
|
|
public EfCoreBlogFeatureRepository(IDbContextProvider<ICmsKitDbContext> dbContextProvider) : base(dbContextProvider) |
|
|
|
{ |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -16,12 +16,12 @@ using Volo.CmsKit.Users; |
|
|
|
|
|
|
|
namespace Volo.CmsKit.Blogs; |
|
|
|
|
|
|
|
public class EfCoreBlogPostRepository : EfCoreRepository<CmsKitDbContext, BlogPost, Guid>, IBlogPostRepository |
|
|
|
public class EfCoreBlogPostRepository : EfCoreRepository<ICmsKitDbContext, BlogPost, Guid>, IBlogPostRepository |
|
|
|
{ |
|
|
|
private EntityTagManager _entityTagManager; |
|
|
|
|
|
|
|
public EfCoreBlogPostRepository( |
|
|
|
IDbContextProvider<CmsKitDbContext> dbContextProvider, |
|
|
|
IDbContextProvider<ICmsKitDbContext> dbContextProvider, |
|
|
|
EntityTagManager entityTagManager) : base(dbContextProvider) |
|
|
|
{ |
|
|
|
_entityTagManager = entityTagManager; |
|
|
|
|
|
|
|
@ -1,4 +1,5 @@ |
|
|
|
@page |
|
|
|
@using System.Web; |
|
|
|
@using Microsoft.AspNetCore.Mvc.Localization |
|
|
|
@using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Modal |
|
|
|
@using Volo.Abp.Localization |
|
|
|
@ -12,7 +13,7 @@ |
|
|
|
|
|
|
|
<form method="post" asp-page="/AbpPermissionManagement/PermissionManagementModal" data-script-class="abp.modals.PermissionManagement" id="PermissionManagementForm"> |
|
|
|
<abp-modal size="Large"> |
|
|
|
<abp-modal-header title="@(L["Permissions"].Value) - @Model.EntityDisplayName"></abp-modal-header> |
|
|
|
<abp-modal-header title="@(L["Permissions"].Value) - @(HttpUtility.HtmlEncode(Model.EntityDisplayName))"></abp-modal-header> |
|
|
|
<abp-modal-body class="custom-scroll-container"> |
|
|
|
<abp-input asp-for="SelectAllInAllTabs" check-box-hidden-input-render-mode="CheckBoxHiddenInputRenderMode.None" label="@L["SelectAllInAllTabs"].Value"/> |
|
|
|
<hr class="mt-2 mb-2"/> |
|
|
|
|