2022-08-30 02:30:36 +00:00
|
|
|
package repo
|
|
|
|
|
2022-10-30 04:05:38 +00:00
|
|
|
import "github.com/hay-kot/homebox/backend/internal/data/ent"
|
2022-08-30 02:30:36 +00:00
|
|
|
|
|
|
|
// AllRepos is a container for all the repository interfaces
|
|
|
|
type AllRepos struct {
|
2022-09-12 22:47:27 +00:00
|
|
|
Users *UserRepository
|
|
|
|
AuthTokens *TokenRepository
|
|
|
|
Groups *GroupRepository
|
|
|
|
Locations *LocationRepository
|
|
|
|
Labels *LabelRepository
|
|
|
|
Items *ItemsRepository
|
|
|
|
Docs *DocumentRepository
|
|
|
|
Attachments *AttachmentRepo
|
2022-12-10 05:57:57 +00:00
|
|
|
MaintEntry *MaintenanceEntryRepository
|
2023-03-07 06:18:58 +00:00
|
|
|
Notifiers *NotifierRepository
|
2022-08-30 02:30:36 +00:00
|
|
|
}
|
|
|
|
|
2022-10-07 02:54:09 +00:00
|
|
|
func New(db *ent.Client, root string) *AllRepos {
|
2022-08-30 02:30:36 +00:00
|
|
|
return &AllRepos{
|
2022-09-12 22:47:27 +00:00
|
|
|
Users: &UserRepository{db},
|
|
|
|
AuthTokens: &TokenRepository{db},
|
2023-03-21 19:32:48 +00:00
|
|
|
Groups: NewGroupRepository(db),
|
2022-09-12 22:47:27 +00:00
|
|
|
Locations: &LocationRepository{db},
|
|
|
|
Labels: &LabelRepository{db},
|
|
|
|
Items: &ItemsRepository{db},
|
2022-09-27 23:52:13 +00:00
|
|
|
Docs: &DocumentRepository{db, root},
|
2022-09-12 22:47:27 +00:00
|
|
|
Attachments: &AttachmentRepo{db},
|
2022-12-10 05:57:57 +00:00
|
|
|
MaintEntry: &MaintenanceEntryRepository{db},
|
2023-03-07 06:18:58 +00:00
|
|
|
Notifiers: NewNotifierRepository(db),
|
2022-08-30 02:30:36 +00:00
|
|
|
}
|
|
|
|
}
|