Robert
Robert
There actually is. If you emit an event with `undefined` name, then all listeners will be notified. _Is this a bug or a feature? :-)_
I stumbled upon the same quest. While it is possible to replace/redirect console.log (and friends) to logLevel, the remaining problem is that the browser then shows the logoutputs as if...
I also support this: There should be at least a configuration so that the href URIs genreated by spring hateoas are relative. If you look at it from a REST...
Hello Oliver! I can understand both sides. Also your argument: "The URI actually _IS_ the ID of that entitry" is a very valid argument. But every REST client I have...
Same problem here. I also created a JIRA ticket: https://jira.spring.io/browse/DATAREST-972 Intersting fact: When you create a controller with @RepositoryRestController (which extends BasePathAwareController), then the resource is added twice: Once under...
Sorry for the duplicate. I already opened the spring-data-rest JIRA ticket. before I found this here. I am actually not sure, if this is more a spring-hateoas or a spring-data-rest...
I found a workaround: ``` Team team = Team.find(Filters.eq("inviteCode", req.inviteCode)).first() // this works //Team team = Team.findByInviteCode(req.inviteCode) // BUG: throws "Internal Server Error: state should be: open" ``` So in...
Kudos to the Travis team. And thank you so much for providing your service to the open source community. But may I politely point you to something from another point...