15 lines
321 B
Ruby
15 lines
321 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Clover
|
|
hash_branch(:project_prefix, "inference-endpoint") do |r|
|
|
unless @project.get_ff_inference_ui
|
|
response.status = 404
|
|
r.halt
|
|
end
|
|
|
|
r.get true do
|
|
@inference_endpoints = inference_endpoint_list
|
|
view "inference/endpoint/index"
|
|
end
|
|
end
|
|
end
|