forked from mirrors/homebox
79f7ad40cb
* add user profiles and theme selectors * lowercase buttons by default * basic layout * (wip) init token APIs * refactor server to support variable options * fix types * api refactor / registration tests * implement UI for url and join * remove console.logs * rename repository factory * fix upload size
30 lines
859 B
Go
30 lines
859 B
Go
package repo
|
|
|
|
import "github.com/hay-kot/homebox/backend/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
|
|
DocTokens *DocumentTokensRepository
|
|
Attachments *AttachmentRepo
|
|
}
|
|
|
|
func New(db *ent.Client, root string) *AllRepos {
|
|
return &AllRepos{
|
|
Users: &UserRepository{db},
|
|
AuthTokens: &TokenRepository{db},
|
|
Groups: &GroupRepository{db},
|
|
Locations: &LocationRepository{db},
|
|
Labels: &LabelRepository{db},
|
|
Items: &ItemsRepository{db},
|
|
Docs: &DocumentRepository{db, root},
|
|
DocTokens: &DocumentTokensRepository{db},
|
|
Attachments: &AttachmentRepo{db},
|
|
}
|
|
}
|