hi
Do you have a _ViewImports.cshtml in your views folder?
The tag helper needs it.
@using System.Globalization
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bootstrap
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bundling
see https://github.com/abpframework/abp/blob/dev/modules/account/src/Volo.Abp.Account.Web/Pages/Account/_ViewImports.cshtml
hi
Cannot resolve parameter 'CastandCrew.NorthStar.CoreAccountingManagement.Interfaces.Integration.IAddressIntegrationAppService
After switching to static proxy.
Have you generated the c# proxy file for IAddressIntegrationAppService ?
You need to expose the integration service while generating the proxy.
https://github.com/abpframework/abp/tree/dev/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/ClientProxies/Volo/Abp/Identity/Integration
hi
Tommorow if i create a tenant for customer, Should i not give the tenant admin provision to add openid applications/clients ??
The Tenant usually doesn't to maintain the OAuth2 applications/clients. This is the default design.
Rather than having multilevel subdomains, if i use three certificates for api,authserver and web and create a tenant test, will abp support test.api.com -> test.authserver.com -> test.web.com tenant resolution?
The HTTPS certificates are unrelated to abp. abp framework support resolves tenant from URL.
hi
Can you share your Payment.Admin project? https://wetransfer.com/
I will download and check.
liming.ma@volosoft.com
hi @nacho
I will confirm this case.
hi
Please share the full code and steps to reproduce the problem.
Thanks.
hi
Add '(single quote) start and end of connection strings.
abp new OzApp -u mvc --connection-string 'Host=localhost;Port=5432;Database=OzApp;User ID=root;Password=1q2w3E*' -m none --separate-auth-server --separate-tenant-schema --database-provider ef --database-management-system PostgreSQL -csf --skip-migrations --skip-migrator --dont-run-install-libs --dont-run-bundling
[16:57:46 INF] You are running the second generation of the ABP CLI. If you're interested in the legacy CLI, see https://abp.io/new-cli
[16:57:54 INF] Creating your solution...
[16:57:54 INF] Using template: app
[16:57:54 INF] Solution name: OzApp
[16:57:54 INF] Output folder: /Users/maliming/Downloads/untitled folder/OzApp
[16:57:54 INF] Database provider: ef
[16:57:54 INF] UI framework: mvc
[16:57:54 INF] Theme: leptonx
[16:57:54 INF] Theme style: system
[16:57:54 INF] Mobile framework: none
[16:57:54 INF] Test Projects: Yes
[16:57:54 INF] Social Logins: Yes
[16:57:54 INF] Tiered: Yes
[16:57:54 INF] Public website: No
[16:57:54 INF] Run install-libs command: No
[16:57:54 INF] Multi Tenancy: Yes
[16:57:54 INF] Sample Crud Page: No
[16:57:54 INF] Kubernetes configuration: Yes
[16:57:54 INF] Separated tenant schema: Yes
[16:57:54 INF] Database management system: postgresql
[16:57:54 INF] Create initial migrations: No
[16:57:54 INF] Run database migrator: No
[16:57:54 INF] Connection string: Host=localhost;Port=5432;Database=OzApp;User ID=root;Password=1q2w3E*
hi
You can add your logic to filter the permission definitions(permissionNames).
var permissionNames = (await PermissionDefinitionManager.GetPermissionsAsync())
.Where(p => p.MultiTenancySide.HasFlag(multiTenancySide))
.Where(p => !p.Providers.Any() || p.Providers.Contains(RolePermissionValueProvider.ProviderName))
.Select(p => p.Name)
.ToArray();