Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update team project access to include additional project roles #642

Merged
merged 1 commit into from
Mar 17, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Unreleased

## Enhancements
* Update team project access to include additional project roles by @joekarl [#642](https://github.com/hashicorp/go-tfe/pull/642)

## Bug Fixes

Expand Down
11 changes: 8 additions & 3 deletions team_project_access.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,10 @@ type teamProjectAccesses struct {
type TeamProjectAccessType string

const (
TeamProjectAccessAdmin TeamProjectAccessType = "admin"
TeamProjectAccessRead TeamProjectAccessType = "read"
TeamProjectAccessAdmin TeamProjectAccessType = "admin"
TeamProjectAccessMaintain TeamProjectAccessType = "maintain"
TeamProjectAccessWrite TeamProjectAccessType = "write"
TeamProjectAccessRead TeamProjectAccessType = "read"
)

// TeamProjectAccessList represents a list of team project accesses
Expand Down Expand Up @@ -224,7 +226,10 @@ func (o TeamProjectAccessAddOptions) valid() error {

func validateTeamProjectAccessType(t TeamProjectAccessType) error {
switch t {
case TeamProjectAccessAdmin, TeamProjectAccessRead:
case TeamProjectAccessAdmin,
TeamProjectAccessMaintain,
TeamProjectAccessWrite,
TeamProjectAccessRead:
// do nothing
default:
return ErrInvalidTeamProjectAccessType
Expand Down