mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
9 lines
202 B
Ruby
9 lines
202 B
Ruby
# frozen_string_literal: true
|
|
|
|
# parent class for openAPI documentation
|
|
class OpenAPI::V1::BaseDoc < OpenAPI::ApplicationDoc
|
|
API_VERSION = 'v1'
|
|
FORMATS = ['json'].freeze
|
|
PER_PAGE_DEFAULT = 20
|
|
end
|