I have method in my model
def indexed_json
to_json(
only: [:id, :chanell_id, :title],
include: [
:locations,
{categories: {only: [:name, :id]}}
]
)
end
I would like to rewrite that in JBuilder and also add another attribute: type_name: self.class.name