Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions proto/agynio/api/agents/v1/agents.proto
Original file line number Diff line number Diff line change
Expand Up @@ -624,6 +624,7 @@ message InitScript {
string mcp_id = 5;
string hook_id = 6;
}
string name = 7;
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[major] Wrong issue linked. This PR references #91 (runner/app re-enrollment proto changes in ziti_management.proto and runners.proto), but the actual changes add a name field to init script messages in agents.proto — completely unrelated.

Please update the PR description to link the correct issue, or remove the Closes #91 reference if there's no corresponding issue for this change.

}

message CreateInitScriptRequest {
Expand All @@ -634,6 +635,7 @@ message CreateInitScriptRequest {
string mcp_id = 4;
string hook_id = 5;
}
string name = 6;
}

message CreateInitScriptResponse {
Expand All @@ -652,6 +654,7 @@ message UpdateInitScriptRequest {
string id = 1; // UUID
optional string script = 2;
optional string description = 3;
optional string name = 4;
}

message UpdateInitScriptResponse {
Expand Down
Loading