I originally posted this as an issue on rails_api GitHub, but am now posting it here due to inactivity.
I\'m trying to use rails_admin
with a Rails 5 API ap
You should have a json view file in this location bookings/index.json.jbuilder And inside this file something like
bookings/index.json.jbuilder
json.name @bookings.name
json.date @bookings.date
This is another template missing
application/index
but really don't know you app completely. So maybe that's the application layout you implemented using ActionView::Layouts. In that case is asking you to implement a layout page file in the location application/index.
NOTE: Those two file inside the views folder.