mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2026-04-15 01:41:56 +00:00
Backport https://github.com/woodpecker-ci/woodpecker/pull/2706 onto release branch --------- Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
35 lines
846 B
Go
35 lines
846 B
Go
package registry
|
|
|
|
import (
|
|
"go.woodpecker-ci.org/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)
|
|
}
|