Upstream sync
This commit is contained in:
@@ -12,6 +12,7 @@ type repoManager interface {
|
||||
Notification() NotificationRepo
|
||||
Profile() ProfileRepo
|
||||
Organization() OrganizationRepo
|
||||
Zipcodes() ZipcodeRepo
|
||||
}
|
||||
|
||||
// UserRepo defines the data set for users
|
||||
@@ -105,3 +106,8 @@ type ProfileRepo interface {
|
||||
GetVisibles(visible bool) ([]entity.Profile, error)
|
||||
GetByOrganizationType(organizationTypeID int64) ([]entity.Profile, error)
|
||||
}
|
||||
|
||||
type ZipcodeRepo interface {
|
||||
GetAll() ([]entity.Zipcode, error)
|
||||
GetByParticipatingZipcode(zipcode string) (entity.Zipcode, error)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user