mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
9 lines
191 B
Ruby
9 lines
191 B
Ruby
# frozen_string_literal: true
|
|
|
|
# OpenAPI provides an way for external apps to use Fab-manager's data through a REST API.
|
|
module OpenAPI
|
|
def self.table_name_prefix
|
|
'open_api_'
|
|
end
|
|
end
|