Activities of "Anjali_Musmade"

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 hiteshsahu

Can you please change PostLogoutRedirectUris from this table and you need to add in RedirectAllowedUrls of authServer appsettings.json file like below.

Answer

Hi

Can you check if both audience are same

Hello Tuncay.Kurt,

can you please try once with this code

 options.Cookie.SecurePolicy= CookieSecurePolicy.SameAsRequest; 

instead of options.Cookie.SecurePolicy= CookieSecurePolicy.Always;

Hello Tuncay.Kurt,

Can you try to add this code in *HttpApiHostModule

  var services = context.Services.AddAntiforgery();

  services.AddAntiforgery(options => 
  { 
      options.Cookie.SameSite = SameSiteMode.None; 
      options.Cookie.SecurePolicy= CookieSecurePolicy.Always; 
  });

regards,

Hi

could you please check these links https://support.abp.io/QA/Questions/3047/Disable-concurrent-user-login

https://support.abp.io/QA/Questions/950/How-to-allow-one-user-concurrent-login-per-user

https://github.com/aspnetboilerplate/aspnetboilerplate/issues/4821

Showing 661 to 670 of 1087 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 23, 2024, 05:12