Activities of "mahmut.gundogdu"

Could you share your package.json and app.module.ts (removed from business related sensitive things).

row 17 is not placed in there. it seems erorr. import { ThemeLeptonModule } from '';

Answer

Lepton-x has font file on top of css. When it didn't connected to internet all css throw error. I was remember, I have fixed the issue. What is your lepton-x version? olsa can you share your network section of chrome dev tools on your browser. We may see the requested file

You need to create a new page. Add the menu. Write the your logic. We can provide the repositoryies about account and role. ABP is a develoment framework. We provide some UIs but it like example. It can extentible but most custom logic, you should create your own pages.

You can download the source code and customize and use them as new component/page or you can add source code in your local and replace with compiled. it is not best case because you can't get updates about the packages. because it is connected your local version. https://docs.abp.io/en/commercial/latest/abp-suite/source-code#:~:text=Adding%20a%20Module%20With%20Source%20Code&text=All%20you%20have%20to%20do,the%20source%20code%20from%20GitHub.

custom contributor is a solition but I would remove the permission of the users. After that the user can't see and use.

Hello,

Please make sure that you are running the abp generate-proxy -t ng --url myApi command in the root folder.

you can check here: https://docs.abp.io/en/abp/latest/UI/Angular/Service-Proxies#service-proxies

Thanks,
Anjali

Actually i was in root folder

Abp generate-proxy -t ng wrapped@abp/ng.schematics schematic packages. when you use @abp/ng.schematics you can spesify where is the extract path. that parameter is entryPoint. Probably the parameter works with abp generate-proxy. you can read paramters of generate proxies

https://docs.abp.io/en/abp/8.0/UI/Angular/Service-Proxies#parameters-of-generate-proxy

can you please share documentation link,meanwhile i provide you the error message in angular app we are encountering

We don't have documentation about how to implement CkEditor in Angular. or other 3d.party libraries. that are not related to ABP. There is no different thing. It is just angular project. But if you got error ABP spesific issues. We can fix that.

Where is the error ? Sometimes it forgotten.

I have overridden all services that you mentioned by my customized service separately and together, I even applied all priority states available then I tested it but ABP default modal is showing yet. I want to disable ABP http error handling in whole app and use my customized Http error handing. how can I do that? I want disable yours and use mine...

Alright, then you should override the service error.handler.ts https://github.com/abpframework/abp/blob/dev/npm/ng-packs/packages/theme-shared/src/lib/handlers/error.handler.ts

I couldn't produce in my local.

Could you share response of change password of your code ?

By Default there are 4 error handlers. Every handler has own priority. I am not sure which is fit your case. The main point, find the right handler, override it or add new one and give Higher priority

We have refactored http-error handler. you can change tiny peace of http helper. here you can StatusCodeErrorHandlerService with Angular's Dependency Injection like

...
  providers: [{
    provide: StatusCodeErrorHandlerService,
    useClass: myStatusCodeErrorHandlerService,
  }],
  bootstrap: [AppComponent],
})
export class AppModule {}

https://github.com/abpframework/abp/blob/dev/npm/ng-packs/packages/theme-shared/src/lib/services/status-code-error-handler.service.ts#L14

but I would do logout function in a http interceptor. https://angular.io/api/common/http/HttpInterceptor

Showing 1 to 10 of 282 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11