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
martin rojas -
GreggHume -
Michael Di Prisco -
Phil Wolstenholme -
Once suspended, davids89 will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, davids89 will be able to comment and publish posts again.
Once unpublished, all posts by davids89 will become hidden and only accessible to themselves.
If davids89 is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to David.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag davids89:
Unflagging davids89 will restore default visibility to their posts.
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