Paul Hallett
Paul Hallett
@pedrogimenez very good idea. I like it! Can you share any code examples? I can promote this issue into a question for prosperity.
I actually really like this pattern. I can foresee some performance issues if those interfaces are joining over network calls, but that would be a good opportunity to start keeping...
Hey @SHxKM this is a really well thought out comment and I appreciate the feedback. First off, I am assuming the second code example has a mistake and it should...
> But what if there really isn't a new requirement? If it's not proving useful then it might be overengineering. I'd clean it up. There isn't anything wrong with anticipating...
No probs. I'm just keen to have people interested in a thing I developed from all my hard work 😆 It sounds like the interfaces could be promoted into it's...
Sounds like a good suggestion :)
I've pinned this discussion because I think it is useful for others who are keen on the guide but don't know what to do!
Hey @RTS340 yes I have had issues like that in the past. This isn't a problem with Django API Domains per say - you can end up with them in...
Great question. I was having a think about this the other day. Django has a robust permissions / groups / users system and we should take advantage of that. Most...
This is my immediate first thought: 1) I would make `UserAPI.get_user()` raise a generic, but useful error: ```python def get_user(): try: UserService.get_user() except SomeIntegrationError: raise UserError("A useful error message") ```...