Hi managed to get it resolved. We realised that as part of our CI/CD pipeline, we were running dotnet publish "MyApp.sln"
During the creation of artifacts, the last project to be published is NOT the HttpApi.Host project. Hence, appsettings.json for HttpApi.Host was overwritten by another project appsettings.json.
The resolution was to only publish the needed artifact
i.e. dotnet publish "MyApp.HttpApi.Host/MyApp.HttpApi.Host.csproj"
Note: the commands are not exactly as used in our project but conveys the idea (we also added flags such as -c Release etc)
Will post the results here soon
I understand that we can change certain settings in the appsetings.json. This applies the default settings to the host and tenant level.
"Settings": {
"Abp.Identity.User.IsUserNameUpdateEnabled": false,
"Abp.Identity.User.IsEmailUpdateEnabled": false,
"Abp.Account.IsSelfRegistrationEnabled": false
},
When testing locally using dotnet run or using a docker container, these settings work fine. I can see that the values in the settings page are updated correctly
However they are not applied when we deploy this to ECS (ABP backend is running in an ECS Task)
I've even tried to update using environment variables. But it doesn't work either
Could you outline any possible reason for this? I've checked that those settings are not overwritten in the DB
Manage to solve with this -> https://abp.io/docs/latest/framework/fundamentals/object-extensions?_redirected=B8ABF606AA1BDF5C629883DF1061649A
Thank you, will close the ticket
Hi Team, I want to edit New Tenant Modal to add extraProperties for creation of tenant. I understand i need to copy this source code -> https://github.com/abpframework/abp/tree/dev/modules/tenant-management
However how should the folder structure look like?
@Bryan-EDV if you want to update only texts you can use the localization text files. @maliming provided you the localization keys. if you add these keys in your localization file (en.json) it'll be changed. also you can change the colors and other styles with simple CSS overrides. but if you want to radically change this bar, you need to replace this component as stated here.
Hi, Thanks for the reply, I explored doing css overrides but this component is not in the classes that i can overwrite, so i think i'm left with replacing the whole component.
Is this the correct replaceable component? I am on abp v8.3, eGdprConfigComponents.CookieConsent does not work
`import { eGdprComponents } from '@volo/abp.ng.gdpr';
key : eGdprComponents.PersonalData `
I'm also under the impression that all source code will be included in the Enterprise version (which my company has purchased), however i didn't find any for this cookie consent bar. can you kindly point me to it? thank you.
Hi, i've done all that, but how do customize the UI?
How can i customize the GDPR cookie consent bar?