mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 10:21:00 +00:00
0f9188597e
- Add pagination support to the API endpoints that return lists of items - Adjust UI to enable infinite scrolling via pagination
34 lines
850 B
Go
34 lines
850 B
Go
package registry
|
|
|
|
import (
|
|
"github.com/woodpecker-ci/woodpecker/server/model"
|
|
)
|
|
|
|
type db struct {
|
|
store model.RegistryStore
|
|
}
|
|
|
|
// New returns a new local registry service.
|
|
func New(store model.RegistryStore) model.RegistryService {
|
|
return &db{store}
|
|
}
|
|
|
|
func (b *db) RegistryFind(repo *model.Repo, name string) (*model.Registry, error) {
|
|
return b.store.RegistryFind(repo, name)
|
|
}
|
|
|
|
func (b *db) RegistryList(repo *model.Repo, p *model.ListOptions) ([]*model.Registry, error) {
|
|
return b.store.RegistryList(repo, p)
|
|
}
|
|
|
|
func (b *db) RegistryCreate(_ *model.Repo, in *model.Registry) error {
|
|
return b.store.RegistryCreate(in)
|
|
}
|
|
|
|
func (b *db) RegistryUpdate(_ *model.Repo, in *model.Registry) error {
|
|
return b.store.RegistryUpdate(in)
|
|
}
|
|
|
|
func (b *db) RegistryDelete(repo *model.Repo, addr string) error {
|
|
return b.store.RegistryDelete(repo, addr)
|
|
}
|