Skip to content

Commit

Permalink
Add status to organization membership
Browse files Browse the repository at this point in the history
  • Loading branch information
blairworkos committed Mar 8, 2024
1 parent 096b8b2 commit 6fca2f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/Resource/OrganizationMembership.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class OrganizationMembership extends BaseWorkOSResource
"id",
"userId",
"organizationId",
"status",
"createdAt",
"updatedAt"
];
Expand All @@ -24,6 +25,7 @@ class OrganizationMembership extends BaseWorkOSResource
"id" => "id",
"user_id" => "userId",
"organization_id" => "organizationId",
"status" => "status",
"created_at" => "createdAt",
"updated_at" => "updatedAt"
];
Expand Down
1 change: 1 addition & 0 deletions tests/WorkOS/UserManagementTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -940,6 +940,7 @@ private function organizationMembershipFixture()
"id" => "om_01E4ZCR3C56J083X43JQXF3JK5",
"userId" => "user_01H7X1M4TZJN5N4HG4XXMA1234",
"organizationId" => "org_01EHQMYV6MBK39QC5PZXHY59C3",
"status" => "active",
"createdAt" => "2021-06-25T19:07:33.155Z",
"updatedAt" => "2021-06-25T19:07:33.155Z",
];
Expand Down

0 comments on commit 6fca2f4

Please sign in to comment.