Skip to content

Commit 2da3691

Browse files
committed
update changelog
1 parent 27bccf2 commit 2da3691

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

agent/proto/agent.proto

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -402,10 +402,14 @@ message CreateSubAgentRequest {
402402
TAB = 1;
403403
}
404404

405-
enum Share {
406-
OWNER = 0;
407-
AUTHENTICATED = 1;
408-
PUBLIC = 2;
405+
406+
407+
enum SharingLevel {
408+
SHARING_LEVEL_UNSPECIFIED = 0;
409+
OWNER = 1;
410+
AUTHENTICATED = 2;
411+
PUBLIC = 3;
412+
ORGANIZATION = 4;
409413
}
410414

411415
string slug = 1;
@@ -418,7 +422,7 @@ message CreateSubAgentRequest {
418422
optional string icon = 8;
419423
optional OpenIn open_in = 9;
420424
optional int32 order = 10;
421-
optional Share share = 11;
425+
optional SharingLevel share = 11;
422426
optional bool subdomain = 12;
423427
optional string url = 13;
424428
}

tailnet/proto/version.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ import (
5555
// - Added support for CreateSubAgent RPC on the Agent API.
5656
// - Added support for DeleteSubAgent RPC on the Agent API.
5757
// - Added support for ListSubAgents RPC on the Agent API.
58+
// - Add ORGANIZATION SharingLevel
5859
const (
5960
CurrentMajor = 2
6061
CurrentMinor = 6

0 commit comments

Comments
 (0)