mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-24 14:56:41 +00:00
9 lines
164 B
Ruby
9 lines
164 B
Ruby
module SwaggerRails
|
|
class SwaggerUiController < ApplicationController
|
|
|
|
def show
|
|
@discovery_url = request.path.gsub('/ui', '/docs/v1')
|
|
end
|
|
end
|
|
end
|