Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 8e75634

Browse files
committed
fixup! Initial prototype of resources command
1 parent cbcbe0c commit 8e75634

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

coder-sdk/org.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ type Organization struct {
1616
// OrganizationUser user wraps the basic User type and adds data specific to the user's membership of an organization
1717
type OrganizationUser struct {
1818
User
19-
OrganizationRoles []OrganizationRole `json:"organization_roles"`
20-
RolesUpdatedAt time.Time `json:"roles_updated_at"`
19+
OrganizationRoles []OrganizationRole `json:"organization_roles"`
20+
RolesUpdatedAt time.Time `json:"roles_updated_at"`
2121
}
2222

23-
// OrganizationRole defines an organization OrganizationRole
23+
// OrganizationRole defines an organization OrganizationRole
2424
type OrganizationRole string
2525

26-
// The OrganizationRole enum values
26+
// The OrganizationRole enum values
2727
const (
2828
RoleOrgMember OrganizationRole = "organization-member"
2929
RoleOrgAdmin OrganizationRole = "organization-admin"

0 commit comments

Comments
 (0)