Radoslav Georgiev
Radoslav Georgiev
Can confirm, @drummonds method is working nicely :ok_hand:
I am having the same problem.
@jsma I managed to get it working. In a Django shell, if you do: ``` python from django.apps import apps for app in apps.get_app_configs(): print(app, app.name, app.label) ``` You will...
Can confirm the solution from @Sharcoux works for me too. Cheers ✨
@frontendschmacktend / @HomaDev I just saw this issue :see_no_evil: Reading everything & answering accordingly.
> The biggest one is the format you chose for your endpoints, to create many many endpoints that are only either GET or POST endpoints vs keeping the number of...
@HomaDev About the HTTP verbs APIs - it's a matter of taste. As long as you keep things consistent - use whatever makes sense to you. For me, personally, unless...
@devmitrandir hello :wave: If you have a service, dedicated to some action, regarding model `A`, which action also requires creating a bunch of instances of model `B`, you just put...
Original issue that was converted to a discussion & now back to an issue - https://github.com/HackSoftware/Django-Styleguide/issues/90
Testing issue comment