hi
You can add a new component to switch the current tenant.
If the new tenant name exists, Replace the current URL.
https://tenant1.localhost:4200
try to link a new user that belongs to tenant2
.tenant2
tenant2
exists.https://tenant1.localhost:4200
with https://tenant2.localhost:4200
hi
assuming I create the
Llm.Url
setting, how would my frontend be able to know that there is such a settingLlm.Url
and retrieve its value?
You should hardcode the setting name in angular to get values.
https://abp.io/docs/latest/framework/ui/angular/settings#how-to-get-a-specific-setting
This requires the IsVisibleToClients(A boolean value indicates that whether this setting value is available in the client side or not. Default value is false to prevent accidently publishing an internal critical setting value.)
of your setting definition is true
:
If your setting is not visible to the client. You have to add new API endpoints to get/set
, just like
hi
The AuthServer built-in the account pro module for login(Authentication)
and oauth2, etc.
That means it has to have UI pages.
The Auth Server project will not have a No UI
option.
hi
Option B is the one I am applying and I keep getting errors.
ok, in this mode. You need to create a new Blazor server app and depend on the necessary modules(blazor server module).
abp new BookStore -t app -u blazor-webapp
You can create a new template project to see the
MyProjectName (Blazor server app)
and MyProjectName.Client (Blazor wasm app)
, they are two indenpended app.
https://abp.io/docs/latest/release-info/migration-guides/abp-8-2-blazor-web-app#the-key-changes-of-the-new-blazor-web-app-template
hi
We are trying to store user info like which user has access to which all branches and each branch has what roles,
Have you implemented this?
If you can get the object
info you can easy to filter data based on it.
https://abp.io/docs/latest/framework/infrastructure/data-filtering#defining-custom-filters https://abp.io/community/articles/switching-between-organization-units-i5tokpzt
I have checked, the source code of Organization Service
has not been changed for a long time.
hi
id=21b23e64-f077-728f-ef0e-3a169f4cf11b
Can you check if the id is the id of TestA
?
Fixed.
Was missing: <PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.0" />
In the domain shared project.
hi
Is your problem solved?