Activities of "cotur"

Hi @MajidAli

Just follow the same referencing and configure actions for new project. Your reusable module will work without any issue.

I'm happy that you solved it :)

About the DatePicker;

It's totally a UTC problem, for now we don't support fully auto configured time.

You can check here: https://docs.abp.io/en/abp/latest/Timing

You need to handle UTC time by yourself in your code.

Thanks

Answer

Hi @ilitzy,

I've created a new section for File Management Download issue. Waiting your reply, thanks.

https://support.abp.io/QA/Questions/1261/File-Management-download-issue

Hi @serdar.genc

CmsKit images are stored via ABP Blob Storing infrastructure, so you can easily change your blob storing provider.

All CmsKit related BLOBs are using MediaContainer (namespace: Volo.CmsKit.MediaDescriptors).

Firstly you should add Blob Storing Azure Provider module to your application, here is the documentation.

Then configure MediaContainer to use Azure Provider.

Configure<AbpBlobStoringOptions>(options =>
{
    options.Containers.Configure<MediaContainer>(container =>
    {
        container.UseAzure(azure =>
        {
            azure.ConnectionString = "your azure connection string";
            azure.ContainerName = "your azure container name";
            azure.CreateContainerIfNotExists = true;
        });
    });
});

Answer

Hi @dicky.tech

The entites of File Management module are not extensible for now.

Answer

Hi @ilitzy

I've tested 2 cases (File Management & DatePicker) with 4.3 (not rc) version. About the File Management, it worked, I could not reproduced. Can you please test it with 4.3 version and if you have problem, please send me a reproducable minimal example.

About the DatePicker, yes there is a problem, we will investigate it. Thanks so much.

Answer

Hi @ilitzy

Can you please provide the type of your application. Db, UI, Tiered etc?

Hi,

For now, we don't support to add "Public Website" directly to an existing project via CLI & Abp Suite.

I assume that you want to upgrade your project 4.3.0-xxx version also.

Here are steps to achive this;

  1. Update your existing application by following migration guide, here is a link.
  2. Make sure your application is successfully upgraded.
  3. Create a new blank application (that includes "public website" project) with 4.3.0.xxx version with the same options with your existing application.
  4. Move the public website project from the newly created solution to your existing solution.

With the 4 step, you can add public website project to your existing solution.

For the Cms-Kit;

Yes you can easily add the Cms-Kit module like all other modules. We are preparing documentation about the Cms-Kit module for now. In a short time, we will publish it.

Hi @kaustubh.kale@ness.com

If you are using directly the Abp Blob storage, you should create a table that you will store the blob name & type. Then you can use the database entity that related with blob.

Hi @RonaldR

In ABP, we use permissions based authorization. So that means, there is no any role that higher then other role. If any role or user has permission about something, it will authorized.

For example, you can give the Role Management permission to a role, but you can revoke the permission name Permission Management from that role.

Role name: admin Permissions: Role Management (all) Permission Management -

Role name: sub-admin Permissions: Role Management (only see) Permission Management +

At that scenario, the admin can create, update & delete roles. but it can't manage the role's permissions. The sub-admin can only see the roles, can't delete or update or add a new role. But the sub-admin can manage all permissions for any role.

As you see, there is no permission for user role management, but there is a permission to manage user permissions.

The base authorization element is permission, roles and organization units are permission collection relations for a user.

Showing 61 to 70 of 88 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13