MCPcopy Index your code
hub / github.com/coder/coder / mutableParamsResponse

Function mutableParamsResponse

cli/start_test.go:36–57  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

34)
35
36func mutableParamsResponse() *echo.Responses {
37 return &echo.Responses{
38 Parse: echo.ParseComplete,
39 ProvisionGraph: []*proto.Response{
40 {
41 Type: &proto.Response_Graph{
42 Graph: &proto.GraphComplete{
43 Parameters: []*proto.RichParameter{
44 {
45 Name: mutableParameterName,
46 Description: "This is a mutable parameter",
47 Required: true,
48 Mutable: true,
49 },
50 },
51 },
52 },
53 },
54 },
55 ProvisionApply: echo.ApplyComplete,
56 }
57}
58
59func immutableParamsResponse() *echo.Responses {
60 return &echo.Responses{

Callers 2

TestStartWithParametersFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected