Browse Source

Add basic organization structs

main
Matt Baer 2 years ago
parent
commit
3ef92c5819
1 changed files with 27 additions and 0 deletions
  1. +27
    -0
      organization.go

+ 27
- 0
organization.go View File

@@ -0,0 +1,27 @@
package writeas

// Role is an OrgMember's role.
type Role string

const (
RoleAdmin Role = "admin"
RoleEditor Role = "editor"
RoleAuthor Role = "author"
)

type (
// OrgMember represents a member of an Organization
OrgMember struct {
Author
Email string `json:"email"`
Role Role `json:"role"`
}

// OrgMemberParams are parameters for creating or updating an OrgMember.
OrgMemberParams struct {
AuthorParams
Username string `json:"username"`
Email string `json:"email"`
Role Role `json:"role"`
}
)

Loading…
Cancel
Save