Activités de "masum.ulu"

Hi ash.jackson, Is your problem solved ?

Hi again Alex,

If you won't upgrade project you need to override transferItem method, here's the workaround. You can use this method until you update project to 7.2.1 after that you can remove

//app.component.ts

import { Component } from '@angular/core';
import { PicklistComponent } from '@volo/abp.ng.identity-server';

@Component({
 selector: 'app-root',
 template: `
   <abp-loader-bar></abp-loader-bar>
   <abp-dynamic-layout></abp-dynamic-layout>
 `,
})
export class AppComponent {}

//Add this codes
PicklistComponent.prototype.transferItem = function (label:string) {
 const index = this.value.findIndex(val => val[this.bindLabel] === label);

 let allowedScopes = [];
 const { left, scopes } = this.value[index];
 if (!left && scopes?.length > 0) {
   allowedScopes = [...scopes];
 }

 this.value = [
   ...this.value.slice(0, index),
   { ...this.value[index], left: !this.value[index].left, allowedScopes },
   ...this.value.slice(index + 1),
 ];
};

Hi again ed,

1.Can you tell me your project's version because we're not display toaster for invalid username/password message and can you show your login page with error, Also if you want to customize login page you can check document for login if you use auth code flow you are logging at server that's why u need to customize on server side

3.In suite there is no like this feature, you need to customize after or before create components. You can check UsersComponent for your case

Hi alex,

Can you tell me your steps for fix this issue, The problem was about the drag and drop the claim items and we fixed on 7.0.3 version did you update your project 7.0.3 or later ?

Hi ed, 1.Currently we display error like this can you show your case for first question with screen shot ?

2.question is about LocationStrategy > HashLocationStrategy in angular it must be marked as useHash: true in your project can you remove this property inside routing module

3.question is related with your own case, it depends on how you want to display clients (or whatever is your domain) specificity, abp creates basic CRUD pages for you. You can customize this pages as you wish. Here's the example that you can use in your case https://material.angular.io/components/table/examples#table-expandable-rows

Hi alex, First of all, your question is not clear Secondly current question is closed if you have an issue create another question please

Hi andmattia, Your code just prevent go to link not hide item from menu, you need to set permission or create new condition for visiblity of route item for example

function configureRoutes(routesService: RoutesService) {
  const config = inject(ConfigStateService);
  const isHost = config.getOne('currentUser').roles.includes('host');

  return () => {
    routesService.add([
      {
        path: '/identity',
        name: '::Menu:IdentityManagement',
        iconClass: 'fas fa-users',
        order: 2,
        layout: eLayoutType.application,
        
        //This
        invisible: isHost,
        //Or this
        requiredPolicy: 'AbpIdentity.Roles',
      },
    ]);
  };
}

Hi burkay,

We fix this issue on (2.1.1) version can you update and try again

Hi again Alex,

We fixed this issue at 7.0 patch version

I've noticed I have not indicated used UI type. We are using Angular, not Blazor. Could you please try that one?

Hi Alexandre,

It looks like there is a problem 5.3 version and later, I created an issue for this I'll fix it

Affichage de 161 à 170 sur 186 entrées
Made with ❤️ on ABP v8.2.0-preview Updated on mars 25, 2024, 15:11