Added bitbucketserver_user resource; updated tests to create users on the fly

This commit is contained in:
Gavin Bunney
2019-10-10 09:36:56 -07:00
parent d63df2e655
commit f748cb05c7
10 changed files with 313 additions and 10 deletions

View File

@@ -18,9 +18,9 @@ type PaginatedProjectPermissionsUsersValue struct {
type ProjectPermissionsUser struct {
Name string
EmailAddress string `json:"emailAddress,omitempty"`
DisplayName string `json:"displayName,omitempty"`
Active bool `json:"active,omitempty"`
EmailAddress string
DisplayName string
Active bool
Permission string
}