I can generate a swagger.json from our base resource with
bundle exec rails generage jsonapi:swagger Api::Base
module Api
class BaseResource < JSONAPI::Resource
class << selfmodule Api
...
Though for things that are build on top of the BaseResource I can not figure it out..
module Api
module V1
class ContainerResource < Api::BaseResource
Thoughts?
I can generate a
swagger.jsonfrom our base resource withbundle exec rails generage jsonapi:swagger Api::BaseThough for things that are build on top of the BaseResource I can not figure it out..
Thoughts?