For example, I've learnt that a green test written in the past might be a false positive test today.
For further actions, you may consider blocking this person and/or reporting abuse
For example, I've learnt that a green test written in the past might be a false positive test today.
For further actions, you may consider blocking this person and/or reporting abuse
Antonio Silva -
yayabobi -
vamstroy -
Shani Shoham -
Top comments (2)
I found that json rpc 2 is a much better protocol for inner API for admin dashboards. It's much simpler than REST, it's very clear.
I don't have to think how to call an endpoint according to the "REST rules", I don't have to bother about http cache, since all requests are POST, and using a proxy object on the client I can easily implement an interface looking as if I call a server-side method directly, e.g.
On the server:
On the client:
And then I can just add a method on the server and call it on the client:
which is very handy.
Itβs extremely painful to refactor code with no tests, no docs, and no history of its requirements