Thanks so much. I think i've got all the info i need now. as mentioend earlier, we'll raise another ticket on the angular support https://abp.io/qa/questions/8404/3a169e3e-9f81-d082-1017-310a3927bd1e or if you could help get any details on that would be great
Thank you,
Meaning that G provider will apply to all tenants unless overwritten on a T level
This part should be working the same for the cli as well. Can you please share the related package.json that has been generated for the gdpr project? May I also know your cli version?
My main project is on abp 8.x.x. Maybe that's why. Is there a way to download the old gdpr versions?
I'm on ABP CLI 8.3.2
this is the package.json for the code generated:
{ "name": "@volo/abp.ng.gdpr", "version": "9.0.1", "dependencies": { "@abp/ng.components": "~9.0.1", "@abp/ng.theme.shared": "~9.0.1", "@volo/abp.commercial.ng.ui": "^9.0.1", "tslib": "^2.3.0" }, "publishConfig": { "access": "public" }, "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/volosoft/volo.git" }, "license": "LGPL-3.0", "keywords": [ "aspnetcore", "boilerplate", "framework", "web", "best-practices", "angular", "maui", "blazor", "mvc", "csharp", "webapp" ] }
Hello, this part has been refactored and fixed in the next version being 9.0 with this PR https://github.com/abpframework/abp/pull/21197
Thanks for the reply, so when is the refactored version available on the abp cli?
Hi
Are you able to point me to the source code for controller method for settings/oauth? I assume inside the controller method it would call some service like settingsProvider.setAsync('Llm.Url', newValue) but i might be mistaken
Hi
I noted that setting provider does not have setter methods (https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.Settings/Volo/Abp/Settings/ISettingProvider.cs)
What service can i use to set the values of the setting? Thank you
https://abp.io/docs/latest/framework/ui/angular/settings#how-to-get-a-specific-setting
Thanks, I will use the above link to get a value from the backend. Is there also a way to set a value using the this.config? Thanks