Base solution for your next web application

Activities of "ismcagdas"

Hi,

Have you tried to add

app.UseHangfireServer(new BackgroundJobServerOptions
{
    Queues = new[] { "critical", "default" }
});

to Startup.cs right under the like

app.UseHangfireDashboard();

Hi,

After a friendship created between admin and a simple user (by admin of course), can they chat without a restriction. For example, can a simple user write back to admin anytime he/she wants ?

If so, you can create a permisison "CanCreatesFriendship" and give it to only admin users or admin role. You need to hide user search input in chat view and need to control this permission while creating a friendship in FriendshipManager.

In this way, only users with this permission can search users to chat with and can create friendships.

If you need to add some extra rules like "simple users cannot write back to admin if 1 day passed after the last message", then we need to think about it more deeply.

About message inbox type functionality, we are also thinking such a feature but probably it will be in AspNet Core and angular version and we dont have an estimated date yet.

Hi,

If you defined your controller in a seperate module, the seperate module should have a modue class defined like "YourCustomModule", and it should call

IocManager.RegisterAssemblyByConvention(Assembly.GetExecutingAssembly());

in it's Initialize method.

Then your web module should depend on your custom module.

[...]
[YourCustomModule]
[...]
public class YourWebModule : AbpModule
{
    ...
}

Hi,

We couldn't repeat the problem. Can you send your project to <a href="mailto:[email protected]">[email protected]</a> ?

Hi,

You can use below css to remove material styles of bootstrap select. First one removes box shadow, second one removes material animation. Dont forget to add id of select item if you want to only do this for language management.

.bootstrap-select button {
    box-shadow: none !important;
}

.bootstrap-select .md-click-circle.md-click-animate {
        -webkit-animation: none;
        -moz-animation: none;
        animation: none;
    }

Hi,

You can extend OrganizationUnit class and add required fields and navigation properties. In order to extend OrganizationUnit, you can take a look at this tutorial <a class="postlink" href="https://aspnetzero.com/Documents/Extending-Existing-Entities">https://aspnetzero.com/Documents/Extend ... g-Entities</a>

Hi,

You are right. We planned to do it in the past but currently we are focused on mvoing to AspNet Core and Angular2 and it takes most of our time.

In that version it will be seperate from the beginning.

Hi,

What is the last error you are gettig ? Can you share that ?

Answer

Hi,

Then you can define a host level setting. And control it in the SubdomainTenancyNameFinder just like we did for "www" and return null.

It will work for you I think.

Hi,

You can take a look at below documents,

<a class="postlink" href="https://aspnetzero.com/Documents/Developing-Step-By-Step">https://aspnetzero.com/Documents/Develo ... ep-By-Step</a> <a class="postlink" href="https://aspnetzero.com/Documents/Developing-Step-By-Step-MPA">https://aspnetzero.com/Documents/Develo ... y-Step-MPA</a>

Showing 12391 to 12400 of 12723 entries