Activities of "liangshiwei"

Because the user does not have any role.

Hi,

Just like SaasService

you can create a CmsService project and intall nuget packages:

  • Volo.CmsKit.Pro.Admin.Application.Contracts
  • Volo.CmsKit.Pro.Admin.Application
  • Volo.CmsKit.Pro.Admin.HttpApi
  • Volo.CmsKit.Pro.Admin.HttpApi.Client
  • Volo.CmsKit.Pro.Application
  • Volo.CmsKit.Pro.Application.Contracts
  • Volo.CmsKit.Pro.Domain
  • Volo.CmsKit.Pro.Domain.Shared
  • Volo.CmsKit.Pro.EntityFrameworkCore
  • Volo.CmsKit.Pro.HttpApi
  • Volo.CmsKit.Pro.HttpApi.Client
  • Volo.CmsKit.Pro.Public.Application
  • Volo.CmsKit.Pro.Public.Application.Contracts
  • Volo.CmsKit.Pro.Public.HttpApi
  • Volo.CmsKit.Pro.Public.HttpApi.Client

For UI, Add the following packages:

Volo.CmsKit.Pro.Public.Web to PublicWeb, Volo.CmsKit.Pro.Admin.Web to Web.

Update gateways and appsettings.json

Open IdentityServerDataSeeder to add CmsService apiResource and apiScope.

Hi,

Can I check it remotely? shiwei.liang@volosoft.com

Hi,

I will check it out.

Hi,

Can I check it remotely? shiwei.liang@volosoft.com

Hi,

It works for me, Can you try it again? ps: make sure you can access the github.

Hi,

I find a way to show the UI, it can work with https://support.abp.io/QA/Questions/1613#answer-4bbf3269-2b57-ae99-3c1d-39fde434f0fb

[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(AuditLogsAppService), typeof(IAuditLogsAppService))]
public class MyAuditLogsAppService : AuditLogsAppService
{
    public MyAuditLogsAppService(IAuditLogRepository auditLogRepository, IJsonSerializer jsonSerializer, IPermissionChecker permissionChecker, IPermissionDefinitionManager permissionDefinitionManager) : base(auditLogRepository, jsonSerializer, permissionChecker, permissionDefinitionManager)
    {
    }

    public override async Task<AuditLogDto> GetAsync(Guid id)
    {
        var log = await AuditLogRepository.GetAsync(id);
        return ObjectMapper.Map<AuditLog, AuditLogDto>(log);
    }
}

Hi,

Thanks, we will consider it.

Hi,

You can refer to the following code:

$(function(){
    
    function setPage(){
        $(".page-link").click(function(){
             var url = $(this).attr("page-href");
             $.ajax({
                url:url,
                dataType:"html"
             }).done(function(result){
                $("$YourModelId").html(result); 
                setPage();
             })
        })
    }
    
    setPage();
})
<div class="row mt-3">
    <div class="col-sm-12 col-md-5"> Showing 1 to 10 of 216 entries</div>
    <div class="col-sm-12 col-md-7">
        <nav aria-label="Page navigation">
            <ul class="pagination justify-content-end">
                <li class="page-item disabled">
                    <a tabindex="-1" class="page-link" page-href="/Resvoyage/HotelSearch/HotelSearchModal?id=6c6e5e1a-d82d-e402-667a-39fda21caa9e&currentPage=1">Previous</a>
                </li>
                <li class="page-item active">
                    <span class="page-link">
                        1
                        <span class="sr-only">(current)</span>
                    </span>
                </li>
                <li class="page-item ">
                    <a tabindex="-1" class="page-link" page-href="/Resvoyage/HotelSearch/HotelSearchModal?id=6c6e5e1a-d82d-e402-667a-39fda21caa9e&currentPage=2">2</a>
                </li>
           </ul>
           <!-- nav-->
     </nav>
  </div></div>

Hi,

I have checked the source code, and yes, this is by design. you can not truncate the Parameters.

You can use the change Parameters max length for the solution:

public class MigrationDbContext
{
    ......

    protected override void OnModelCreating(ModelBuilder builder)
    {
        .......

        builder.Entity<AuditLogAction>(b =>
        {
            b.Property(x => x.Parameters).HasMaxLength(int.MaxValue);
        });
    }
}
Showing 5701 to 5710 of 6693 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.