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

Activities of "maliming"

There is no db context in your PatientPortal.PatientStripePayment. IRepository will not be registered.

Module classes and service classes are best implemented separately.

  1. Properly empowered to avoid security issues (the purpose of permissions is to protect the application)
  2. Automatic login will not have too much impact on performance.
  3. You can log in directly in the method without providing a login page for the user to enter the username and password.
Answer

Solved the problem after remote.

Answer

@rnguyen Send your teamviewer information to: [email protected]

Mainly because Hangfire.SqlServer requires a specific version of the Hangfire.Core package. Currently only manual processing

Answer

You can check the logs to see the error message.

@firnas Have you tried this solution? http://www.advancesharp.com/blog/1191/angularjs-html5-mode-reloading-page-not-found-solution

Modify the AppTestBase constructor according to the following code and then take a unit test to see.

protected AppTestBase()
{
    CultureInfo.CurrentCulture = new CultureInfo("en");
    CultureInfo.CurrentUICulture = new CultureInfo("en");

    SeedTestData();
    LoginAsDefaultTenantAdmin();
}

Sorry, you can try to override the IUserNavigationManager and then evaluate the UserIdentifier when populating the menu to modify the isVisible property.

https://github.com/aspnetboilerplate/aspnetboilerplate/blob/e0ded5d8702f389aa1f5947d3446f16aec845287/src/Abp/Application/Navigation/UserNavigationManager.cs#L51

https://github.com/aspnetboilerplate/aspnetboilerplate/blob/e0ded5d8702f389aa1f5947d3446f16aec845287/src/Abp/Application/Navigation/UserNavigationManager.cs#L100

Replacing Built-In Services: https://aspnetboilerplate.com/Pages/Documents/Startup-Configuration#replacing-built-in-services

When you create a MenuItemDefinition object, its isVisible property is already determined.

If you want to control it dynamically, you can override the INavigationManager.

Showing 2471 to 2480 of 3000 entries