Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "oguzhanagir"

Answer

Hi

As a Github member, can you delete the previously added username and add it again? This will solve your problem.

Hi

If there's anything else we can assist you with, please don't hesitate to contact us. Have a great day!

Hi uenlkr4e

1- When creating a background job, generate a unique key for the job and store this key in a database or cache.

string jobKey = $"Event_{eventType}";

//Returns: Unique identifier of a background job.
var jobId = await _backgroundJobManager.EnqueueAsync< MyJobMethod, UserIdentifier >(AbpSession.ToUserIdentifier());

// Store jobId and jobKey in storage
SaveJobKeyToStorage(jobKey, jobId);

2- Delete the Job: When a new event is triggered, retrieve the stored key, find the job ID, and delete the job using BackgroundJob.Delete(jobId). You can place this code in second background job.

var jobId = GetJobIdFromStorage(jobKey);
if (jobId  != null)
{
    await _backgroundJobManager.DeleteAsync(jobId);  // Delete the job
    RemoveJobKeyFromStorage(jobKey);  // Remove the key from storage
}

Here you can keep the jobId either in the database or in the cache. This may vary depending on the usage scenario. This is a sample code, you can change it according to the scenario. The business logic can be like this

Answer

Hi WirelessDynamics

After logging in with the user who has the plan on the aspnetzero.com website, clicking the manage button under the Account button, you can give permission to the github user you are trying to log in from the Github Members tab on the relevant page.

Hi rajalla

Could you please kindly forward your request and information to the email address [email protected]?

Thank you.

Hi nexgenvisibility

The document here (https://aspnetboilerplate.com/Pages/Documents/EF-Core-PostgreSql-Integration/) will help you integrate the PostgreSql database.

Hi ESTeam

This message is used when logging in to Angular. If you want to change this message, you can change this message by going to the src/account/login/login.service.ts file.

Related file

Hi cyber50.ae

By default, there is no such setting, but you can enable tenant users to log in together with the LDAP user by changing the content of the overridden method. You will need to make manual changes here.

You can edit the content of the ValidateCredentials method to enable tenant users to log in when LDAP is active.

Answer

Hi

We won't be able to assist with this matter. It would be more appropriate to communicate your request to the ELSA developers.

Thank you. Best regards

Hi metatechsoftware

Can you update the Castle.Windsor.MsDependencyInjection package to the latest version? This version is 4.1.0. As you can do this, you can also solve your problem by updating the ASP.NET Boilerplate (Abp) package to version 9.0 or the latest version, 9.3.0

If the problem persists, do not hesitate to contact us.

Showing 91 to 100 of 166 entries