1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/doc/open_api/v1/base_doc.rb

9 lines
202 B
Ruby
Raw Normal View History

2019-03-26 14:27:39 +01:00
# frozen_string_literal: true
# parent class for openAPI documentation
2016-05-05 15:02:02 +02:00
class OpenAPI::V1::BaseDoc < OpenAPI::ApplicationDoc
2019-03-26 14:27:39 +01:00
API_VERSION = 'v1'
FORMATS = ['json'].freeze
2016-05-05 15:02:02 +02:00
PER_PAGE_DEFAULT = 20
end