forked from mirrors/homebox
2cbcc8bb1d
* rough implementation of WS based event system for server side notifications of mutation * fix test construction * fix deadlock on event bus * disable linter error * add item mutation events * remove old event bus code * refactor event system to use composables * refresh items table when new item is added * fix create form errors * cleanup unnecessary calls * fix importer erorrs + limit fn calls on import
35 lines
1.1 KiB
Go
35 lines
1.1 KiB
Go
package repo
|
|
|
|
import (
|
|
"github.com/hay-kot/homebox/backend/internal/core/services/reporting/eventbus"
|
|
"github.com/hay-kot/homebox/backend/internal/data/ent"
|
|
)
|
|
|
|
// AllRepos is a container for all the repository interfaces
|
|
type AllRepos struct {
|
|
Users *UserRepository
|
|
AuthTokens *TokenRepository
|
|
Groups *GroupRepository
|
|
Locations *LocationRepository
|
|
Labels *LabelRepository
|
|
Items *ItemsRepository
|
|
Docs *DocumentRepository
|
|
Attachments *AttachmentRepo
|
|
MaintEntry *MaintenanceEntryRepository
|
|
Notifiers *NotifierRepository
|
|
}
|
|
|
|
func New(db *ent.Client, bus *eventbus.EventBus, root string) *AllRepos {
|
|
return &AllRepos{
|
|
Users: &UserRepository{db},
|
|
AuthTokens: &TokenRepository{db},
|
|
Groups: NewGroupRepository(db),
|
|
Locations: &LocationRepository{db, bus},
|
|
Labels: &LabelRepository{db, bus},
|
|
Items: &ItemsRepository{db, bus},
|
|
Docs: &DocumentRepository{db, root},
|
|
Attachments: &AttachmentRepo{db},
|
|
MaintEntry: &MaintenanceEntryRepository{db},
|
|
Notifiers: NewNotifierRepository(db),
|
|
}
|
|
}
|