Skip to content
Snippets Groups Projects
Verified Commit e6072d9c authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

feat: add ListJobsForShows

parent 1427073f
No related branches found
No related tags found
No related merge requests found
......@@ -49,6 +49,10 @@ func (im *Importer) ListJobs(showID uint64, offset, limit int) ([]*Job, error) {
return im.jobs.ListJobs(showID, offset, limit), nil // for now error is always nil but this might change later
}
func (im *Importer) ListJobsForShows(showIDs []uint64, offset int, limit int) ([]*Job, error) {
return im.jobs.ListJobsForShows(showIDs, offset, limit), nil // for now error is always nil but this might change later
}
func (im *Importer) ParseAndVerifySourceURI(uri string) (*SourceURL, error) {
src, err := url.Parse(uri)
if err != nil {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment