We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm working on a project which the service proxy is generated with the name like this: `abp.services.app.serviceName' http://aspnetboilerplate.com/Pages/Documents/Dynamic-Web-API#DocAngularSupport
Currently I'm using a little hack:
var ngAnnotatePlugin = { init: function (ctx) { ctx.rename = { get: function (name) { if (/AppService$/.test(name)) { return 'abp.services.app.' + name.replace('AppService', '') } return name } } }, match: function (node) { } }
I'm looking for the ability to pass a callback/plugin to rename services.
Thanks.
The text was updated successfully, but these errors were encountered:
Or, something like this is more convenient if we have some services which does not follow any convention:
/* @ngInject { userService: 'abp.services.app.user', something:'some-thing' } */
Sorry, something went wrong.
#245
No branches or pull requests
I'm working on a project which the service proxy is generated with the name like this: `abp.services.app.serviceName'
http://aspnetboilerplate.com/Pages/Documents/Dynamic-Web-API#DocAngularSupport
Currently I'm using a little hack:
I'm looking for the ability to pass a callback/plugin to rename services.
Thanks.
The text was updated successfully, but these errors were encountered: