Hi
Currently this feature is not implement in ABP if you can do it in a simple aspnetcore openiddict angular project then you can apply the same logic here.
let me know if you face any issue specific to abp implemenation.
Hello BassaSolutions,
could you please provide steps to reproduce.
Regards,
Hello WilliamT,
Please add this code to CustomMenuContributor under *.Web/Menus
public async Task ConfigureMenuAsync(MenuConfigurationContext context)
{
if (context.Menu.Name == StandardMenus.User)
{
context.Menu.Items.RemoveAll(x => x.Name == "Account.SecurityLogs");
context.Menu.Items.RemoveAll(x => x.Name == "Account.LinkedAccounts");
context.Menu.Items.RemoveAll(x => x.Name == "Account.AuthorityDelegation");
}
}
It will gives output like
Hello mc86.
please check this https://docs.telerik.com/blazor-ui/knowledge-base/common-increase-signalr-max-message-size
regards,
Hello PSTEELNZ,
Please have look to this similar issue https://support.abp.io/QA/Questions/4456/Angular-lepton-x-general-settings
and you may check this video https://www.youtube.com/watch?v=R9CqTtn6Wcg from 30.00 mins, it is showing how to update toolbar.
Please do let me know if find helpful for you
Thanks, Anjali
Hello PSTEELNZ,
Could you please confirm your version once? Is it 2.4?
Have you check this https://docs.abp.io/en/commercial/latest/themes/lepton-x/angular#general-settings
I am not sure we need to run globby.
I just tried in another project where I've added 2 files gulpfile.js
& bundles.json
then I got that error
Local gulp not found in D:\------
after getting these errors I just added "gulp": "^4.0.1", "gulp-clean-css": "^4.3.0", "gulp-concat": "^2.6.1","gulp-less": "^5.0.0","gulp-postcss": "^9.0.1","gulp-uglify": "^3.0.2",
these 6 dependnency packages then run npm install -g gulp
command. After this process was able to do gulp build
.
I will try to reproduce the last issue which you are facing can you please send your package.json
file & yes what's your node version
Hello Tuncay.Kurt,
can you please try once with this code
options.Cookie.SecurePolicy= CookieSecurePolicy.SameAsRequest;
instead of options.Cookie.SecurePolicy= CookieSecurePolicy.Always;