Activities of "maliming"

hi

The application service will try to get all permissions when you call the its method, it will be an infinite loop.

So do not call application service in the Define method.

You can get dynamic permissions through other ways. Sync methods are preferred.

I seach code, it seems should change from Account.cshtml in Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic But I donot have the commercial source code for that.

Letpon is open source for you!

abp get-source Volo.LeptonTheme 

hi

If two instances use the same key and same ApplicationName, it is possible to call each other.

https://docs.microsoft.com/en-us/aspnet/core/security/data-protection/configuration/overview?view=aspnetcore-5.0

hi

You disabled some permissions.

https://github.com/abpframework/abp/blob/dev/modules/permission-management/src/Volo.Abp.PermissionManagement.Application/Volo/Abp/PermissionManagement/PermissionAppService.cs#L57

OK, I will investigate this.

hi

hi

I checked, the problem should DataProtectorTokenProvider.

You can inject the UserManager in your identity server project, then call GenerateEmailConfirmationTokenAsync and ConfirmEmailAsync to check if the function is works.

public IdentityUserManager UserManager { get; set; }

public virtual Task<string> GenerateEmailConfirmationTokenAsync(TUser user);
public virtual async Task<IdentityResult> ConfirmEmailAsync(TUser user, string token)

hi

Can i check it remotely? https://zoom.us/j/92883778530?pwd=SHRCbEd0UndjYzc5R2szVlJiLzJzQT09

Will it work if identity server and api are run on one instance?

Sorriy, but I could not find what you wrote about on page provided by link. Can you please send link to source of project you talking about?

If you create an app project, you will find a HttpApi.Client.ConsoleTestApp project, which will call the application service that requires authorization. It is done automatically in the ConsoleTestApp project. You can think of it as event handler or background job/work.

In a monolithic application, it will directly use application services, and in tiered or microservices, it will automatically call web api.

In short - I want CurrentUser and CurrentTenant will be provided before event handler execution

I don't fully understand, can you share some code?

Showing 6991 to 7000 of 7751 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 25, 2024, 05:13