mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-16 17:55:56 +08:00
7 lines
170 B
Ruby
7 lines
170 B
Ruby
class Api::V1::Sonarqubes::IssuesController < ApplicationController
|
|
def index
|
|
data = Sonarqube.client.get("/api/issues/search",params)
|
|
render_ok data
|
|
end
|
|
end
|