Skip to content

Commit

Permalink
fix(auth): add missing role (#9307)
Browse files Browse the repository at this point in the history
### Description

Fix CONTRIBUTOR role for remote caching (cc @mrmckeb 👋🏼😄 )

### Testing Instructions

<!--
  Give a quick description of steps to test your changes.
-->
  • Loading branch information
tknickman authored Oct 22, 2024
1 parent 2ee2460 commit 3970449
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions crates/turborepo-vercel-api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,14 @@ impl Membership {
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "UPPERCASE")]
pub enum Role {
Member,
// ordered by access-level
Owner,
Viewer,
Admin,
Member,
Developer,
Contributor,
Billing,
Viewer,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
Expand Down

0 comments on commit 3970449

Please sign in to comment.