feat(organization): added update org address to http api and to org details settings view, closes #2672
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package dtos
|
||||
|
||||
type UpdateOrgForm struct {
|
||||
Name string `json:"name" binding:"Required"`
|
||||
}
|
||||
|
||||
type UpdateOrgAddressForm struct {
|
||||
Address1 string `json:"address1"`
|
||||
Address2 string `json:"address2"`
|
||||
City string `json:"city"`
|
||||
ZipCode string `json:"zipcode"`
|
||||
State string `json:"state"`
|
||||
Country string `json:"country"`
|
||||
}
|
||||
Reference in New Issue
Block a user