Skip to content

Commit 29951d9

Browse files
committed
remove beta flag
1 parent 27686c4 commit 29951d9

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

team_project_access.go

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ type TeamProjectAccessProjectPermissions struct {
7272
ProjectSettingsPermission ProjectSettingsPermissionType `jsonapi:"attr,settings"`
7373
ProjectTeamsPermission ProjectTeamsPermissionType `jsonapi:"attr,teams"`
7474
// ProjectVariableSetsPermission represents read, manage, and no access custom permission for project-level variable sets
75-
// This relation is considered BETA, SUBJECT TO CHANGE, and likely unavailable to most users.
7675
ProjectVariableSetsPermission ProjectVariableSetsPermissionType `jsonapi:"attr,variable-sets"`
7776
}
7877

@@ -108,7 +107,6 @@ const (
108107
)
109108

110109
// ProjectVariableSetsPermissionType represents the permission type to a project's variable sets
111-
// This relation is considered BETA, SUBJECT TO CHANGE, and likely unavailable to most users.
112110
type ProjectVariableSetsPermissionType string
113111

114112
const (
@@ -154,9 +152,8 @@ const (
154152
)
155153

156154
type TeamProjectAccessProjectPermissionsOptions struct {
157-
Settings *ProjectSettingsPermissionType `json:"settings,omitempty"`
158-
Teams *ProjectTeamsPermissionType `json:"teams,omitempty"`
159-
// This relation is considered BETA, SUBJECT TO CHANGE, and likely unavailable to most users.
155+
Settings *ProjectSettingsPermissionType `json:"settings,omitempty"`
156+
Teams *ProjectTeamsPermissionType `json:"teams,omitempty"`
160157
VariableSets *ProjectVariableSetsPermissionType `json:"variable-sets,omitempty"`
161158
}
162159

team_project_access_integration_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@ func TestTeamProjectAccessesAdd(t *testing.T) {
166166
})
167167

168168
t.Run("with no project access options for custom TeamProject permissions", func(t *testing.T) {
169-
skipUnlessBeta(t)
170169
options := TeamProjectAccessAddOptions{
171170
Access: *ProjectAccess(TeamProjectAccessCustom),
172171
Team: tmTest,
@@ -274,7 +273,6 @@ func TestTeamProjectAccessesAdd(t *testing.T) {
274273
})
275274

276275
t.Run("with valid options for custom variable sets permissions", func(t *testing.T) {
277-
skipUnlessBeta(t)
278276
options := TeamProjectAccessAddOptions{
279277
Access: *ProjectAccess(TeamProjectAccessCustom),
280278
Team: tmTest,
@@ -481,7 +479,6 @@ func TestTeamProjectAccessesUpdate(t *testing.T) {
481479
})
482480

483481
t.Run("with valid custom permissions attributes for variable sets permissions", func(t *testing.T) {
484-
skipUnlessBeta(t)
485482
// create tpaCustomTest to verify unupdated attributes stay the same for custom permissions
486483
// because going from admin to read to custom changes the values of all custom permissions
487484
tm2Test, tm2TestCleanup := createTeam(t, client, orgTest)

0 commit comments

Comments
 (0)