Activities of "yasin.hallak.89@gmail.com"

Hi,

I'd like to check it remotely, can we have a meeting? shiwei.liang@volosoft.com

Yes we can I sent you invitation on google meet

abp-application-layout

Hi.

the body does not have abp-application-layout .

My theme leptonX

Hi maliming

I think there is issue in file chatMessageReceiving in chat Module

When I removed this condition $('body').hasClass('abp-application-layout')

It works well and connected as below :

7.0.0-rc2.4

thanks it's works well.

Could you check on chat module please, it does not work real-time.

I just installed the chat module using abp suite and it works

But it is not real-time when I send a message from one browser to a user who is logged in on the other browser it doesn't receive a message

I have to reload the page to see the message is this how it is supposed to work ??

Hi Malik

We have an application for multi-tenants and we have plans for prices like ABP Commercial Subscription as below :

We want the customer when he select a plan. After that we need to show him the registration page to insert information and he becomes

a tenant in our application.

I didn't use Tieredproject

The project already enabled the multi-tenant feature.

if (MultiTenancyConsts.IsEnabled) 
{ 
    app.UseMultiTenancy(); 
} 
 

Okay I know, but how I can distinguish between tenants for the anonymous users without login

hi

Did you use the Tiered project? Please check the appsettings.json of web.public

if so, the web.public will get data from api, which means you don't need to enable the multi-tenant feature.

hi I didn't use Tieredproject

hi

What is the purpose of using it?

I have multi-tenant and I want to display only data for every tenant in public site

You can consider passing services or IServiceProvider to static method.

This method deep nested , I need to pass IServiceProvider to all methods !.

I need efficient way more than this

hi

Can you share your static class?

public static class AssignmentExtensions
    {
        public static string AssignmentTypeHelper(this Assignment target, IStringLocalizer localize)
        {
            string assignmentType = string.Empty;

            if (target.IsTemporary)
            {
                if (target.IsGuard()) assignmentType = $"{localize["Guard"]} - {localize["General.Temporary"]}";

                if (target.IsReservedGuard()) assignmentType = $"{localize["ReservedGuard"]} - {localize["General.Temporary"]}";

                if (target.IsFieldSupervisor())
                {
                    assignmentType = $"{localize["FieldSupervisor"]} - {localize["General.Temporary"]}";
                }
            }
            else
            {
                assignmentType = $"{localize["Guard"]} - {localize["General.Permanently"]}";
            }

            return assignmentType;
        }
    }
Showing 21 to 30 of 83 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11