-
Looks like requesting my user's projects (via the link `/projects?user_id={users.id}`) actually returns a list of all the projects that exist. This is not a special admin account account or anything.
-
- [ ] Remove and spec the doorkeeper protection on the /api/users endpoint
- [ ] Add a minimal serialiser for login names only for this end point when not authorised by a doorkeeper token
- [ ] Allow …
-
With this data, "found unpermitted parameters: subject":
```
{
"classifications":{
"links":{
"project":"73",
"workflow":"44",
"subject":"365314"
},
"metadata":{
…
-
can only can the side-loading include working if I load all the serializer like the sample program
https://github.com/GavinJoyce/restpack-serializer-sample/blob/master/config/initializers/restpack_se…
3dd13 updated
10 years ago
-
As the owner relationship is polymorphic and RestPack Serializer doesn't embed the resource class context the owner routes will be useless.
I've got a [PR with RestPack serializer](https://github.co…
-
Do we need something like this in the spec directly?
-
It would be very useful to set a maximum page_size that is allowed, especially for public APIs it would be very bad of having one loading 1000000 records.
Something like kaminari's .max_page_size. S…
xdmx updated
10 years ago
-
http://localhost:3000/api/v1/messages?include=comments
The comments are included but the array of comment ids in the links element of the parent is missing:
``` json
{
-messages: [
-{
id: "1"
text: …
-
**UPDATE FOR THOSE IN SIMILAR SITUATION:** Yes it is, as of October 30th, 2014.
I am trying to integrate restpack_serializer into [a project](https://github.com/farmbot/OpenFarm) that uses MongoDB as …
-
we have role serializer:
``` ruby
class RoleSerializer
include RestPack::Serializer
attributes :id, :name, :purpose
can_include :role_scopes
end
```
and a role_scope_seriazlier:
``` ruby
cla…