samypr100
samypr100
@Foxandxss Man!, had to get very creative to do this plunker. This is actually my first shot at a plunker for this problem. http://plnkr.co/edit/gnRptpYM5vx3y73EYSZD?p=preview You'll eventually see an throw in...
@Foxandxss I saw Angular JS team response. :) Should I wait for your 2.0 release then or is there something I can do on my end meanwhile?
@luke-adams Just in case: You can still use .success() & .error() if you set to true `$httpProvider.useLegacyPromiseExtensions`
I'm getting a similar issue when using ui-router and toastr on Angular 1.4. I know ionic uses ui-router. Maybe this is related to the issue I just opened #136? I...
TL;DR paths are important, beware of mounting it in `/` as it may cause issues. Mounting it outside of `/` made it work for me on the first try for...
Hi @euri10, thanks for taking time and considering this. 1. I don't know how gunicorn deals with it since I don't think they support `--ssl-password` either. I'm not sure since...
> can you point me where, this is interesting. Absolutely! Code: https://github.com/pallets/werkzeug/blob/master/src/werkzeug/serving.py#L604 Docs: https://werkzeug.palletsprojects.com/serving#werkzeug.serving.run_simple (see ssl_context param) Thanks!
Agreed it's not a `umongo` issue unless we can "consider" passing some arbitrary/specific args, kwargs to the driver implementations via Meta (DocumentOpts) or something in similar fashion to how [pymodm](https://pymodm.readthedocs.io/en/stable/api/index.html#pymodm.MongoModel)...
@Niicck I think this also closes #873 due to the changes in `src/nox_poetry/poetry.py` unless I'm mistaken
@Niicck `from importlib import metadata` is python 3.8+ only, but since importlib-metadata is a dependency (from nox) its possible to use `import importlib_metadata as metadata` on 3.7 and below as...