Ivan Novakov
Ivan Novakov
My case is very similar to the one explained in the docs - [Advanced routing](https://phlyrestfully.readthedocs.org/en/latest/ref/advanced-routing.html). The `GET /groups/:id/users` request is routed to the `fetchAll` method of the `GroupUserResourceController`, so the...
Yes, this might be a solution, but I thought it could be done in a more elegant way :). The page you are referencing itself says: "In general, you shouldn’t...
Ok, I'll try to be more specific. I have these routes: ``` 'users' => array( 'type' => 'Segment', 'options' => array( 'route' => '/users[/:user_id]', 'defaults' => array( 'controller' => 'PerunWs\UserController'...
Sure, actually it's here on github :). It's the `InoPerunApi\Entity\Collection\RichMemberCollection` which contains items of type `InoPerunApi\Entity\RichMember`: https://github.com/ivan-novakov/php-perun-ws/blob/master/module/PerunWs/config/module.config.php#L166
Hi, I stopped using ExtJS since Sencha changed the licensing, so I cannot provide any help with ExtJS 6.
What browser and what OS do you use?
I don't know WCF REST, so I have no idea, how uploads are implemented in it. The widget supports multipart and raw data upload, which may be sufficient for most...
I'm not familiar with the Rails Backend, but I see one possible problem - the backend probably expects a standard POST request as if sent from a form ("application/x-www-form-urlencoded"). However,...
You may now try the FormDataUploader, which functions as if the file has been uploaded through a form. May be that is what the Rails backend is expecting. See the...