Attività di "EngincanV"

Can you check, you've defined the middleware after the authentication and authorization middlewares?

Important: UseHangfireDashboard should be called after the authentication middleware in your Startup class (probably at the last line). Otherwise, authorization will always fail! => https://github.com/abpframework/abp/pull/9704/files#diff-6d147525b770cf239abbea8f3f835e87ddc637c8b8ec045b8ec85361be3662fd

Hi @Marten, with v5.0 Hangfire dashboard permission will be added to the framework. In meantime, you can examine the pull request to implement this feature.

Hi @Shoba24, you can simply use window.location.href or window.location.replace("your-url") and if you want to pass a parameter to that page, use data parameter of the action function.

action: function(data) {
    //...
    window.location.href = "/product/ + data.record.product.id;
}

P/S : I have actually submitted a similar support ticket for this issue, however I hit an error when submitting. The ticket was still created but not accessible due to error. https://support.abp.io/QA/Questions/1763/The-property-%27AppUserExtraProperties%27-could-not-be-mapped-because-it-is-of-type-%27ExtraPropertyDictionary%27-which-is-not-a-supported-primitive-type-or-a-valid-entity-type-Either-explicitly-map-this-property-or-ignore-it-using-the-%27NotMapped%27-attribute

Hi @riz1992, thanks for reporting the problem in the page. The question is removed and your credit has been refunded for that question.

You're welcome. You should not use the IMarkdownToHtmlRenderer interface from web layer because it's defined in public-web and it's registration in there. But if you want to use it anyway, you need to add [DependsOn(typeof(YourWebPublicModule))] above of your web module class.

[DependsOn(
        ...
        typeof(CmsKitProAdminWebModule),
        typeof(AbpSwashbuckleModule),
        typeof(AbpAspNetCoreSerilogModule),
        typeof(YourWebPublicModule) //add this line
        )]
    public class YourWebModule : AbpModule
    {
        ...
    }

Hi @repunjay, you can find the users login date and time by checking the Action (LoginSucceded) field of the Security Logs page.

You can use IIdentitySecurityLogRepository to list it in your application service.

Also you can use the IIdentitySecurityLogRepository to get your inactive (dormant) users in specified time-range. (Maybe you can get the logged out users (by specifying the action as Logout) and check the user logged in 'x' days)

Hi @zsanhong, in your case the url should be => @page "/Cms/Pages/ViewModel/{id:guid}" Because you need the Id parameter.

Please check the razor page documentation.

Hi, you can override the modal you want by creating the same .cshtml file under the same path and replace the code-blocks by your needs.

For example, lets assume you want to change the save button's text of the Identity/User/EditModal.cshtml. You need to create the cshtml file in the same path (Pages/Identity/Users/EditModal.cshtml) and copy the original .cshtml file of the module and paste it into your page, then make the necessary changes.

...
        <div class="modal-footer">
            <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
            <button type="button" class="btn btn-primary">Submit</button> @* Save button text changed as Submit *@
        </div>
...

For more information about Customizing UI, please check the documentation.

Can you add the [UnitOfWork] attribute to above of your method and try it again?

Hi @zsanhong, please check your View.cshtml file's @page attribute for routing path.

  • If you define the path like this => @page "/Cms/Pages/View" You should be able to navigate the page.

  • If you want to click the view button and redirected to the page in public web-site application. You can access the page via /pages/{slug} URL.

{
   text: l('View'),
   visible: abp.auth.isGranted('CmsKit.Pages.Update'),
   action: function (data) 
   {
      var publicWebSiteBaseUrl = "<your-public-web-site-url>"; // like "https://localhost:44304"
      window.location.href = publicWebSiteBaseUrl + `/Pages/${data.record.slug}`;
   }
},
611 - 620 di 642
Made with ❤️ on ABP v8.2.0-preview Updated on marzo 25, 2024, 15:11