Is it possible to disable to show up some self link within resource?
"links": {
"self": "/hoges/1"
},
We can disable links with this.
class Hoge < JSONAPI::Resource
def custom_links(options)
{self: nil}
end
end
Most helpful comment
We can disable links with this.