Activities of "alper"

@jhan I forgot to tell you that you first need to install the ABP CLI.

Run this first to install it

dotnet tool install --global Volo.Abp.Cli

On the other hand, copying the license file and session file is easier. Copy these 2 files from your computer to your Docker container:

%UserProfile%\.\AppData\Local\Temp\AbpLicense.bin
%UserProfile%\.abp\cli\access-token.bin

@jhan you should also be logging in via ABP CLI in the docker container. If the second solution doesn't work for you try to add this to your docker yaml.

abp login <username> -p <password>

@alexander did you solve it now?

AppUser is not in the module template because the user entity is in the application template. The modules shouldn't depend on the user entity in the app template. It's a bad practise. you are coupling main application and module. if you need a user in your module, you need to create a new user (duplicate the main user) for your module and sync it with the main app.

that's more clear now. let us check it. @yekalkan can you check that pls?

Answer

it'll be implemented in the next versions.

Answer

@nowayja Suite doesn't support Blazor module code generation. sorry!

it's weird. when you write user it must be filtered to AppUser

did I understand it correct, the localization is not done for OrLoginWith , AreYouANewUser ?

there's this rule; if your appservice / domain service method has seperate business logics which has to be handled seperately then you need to split them into different UOW scopes. Otherwise the complete request will be evaluated as transactional and will be rolled back if hits any exception.

Showing 1181 to 1190 of 1975 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 19, 2024, 10:33