fix: create default transcodings on existing installations

This commit is contained in:
Deluan 2020-03-17 16:49:37 -04:00
parent bc1f767123
commit 811703ab60
3 changed files with 13 additions and 4 deletions

View file

@ -28,6 +28,10 @@ func (r *transcodingRepository) Get(id string) (*model.Transcoding, error) {
return &res, err
}
func (r *transcodingRepository) CountAll(qo ...model.QueryOptions) (int64, error) {
return r.count(Select(), qo...)
}
func (r *transcodingRepository) FindByFormat(format string) (*model.Transcoding, error) {
sel := r.newSelect().Columns("*").Where(Eq{"target_format": format})
var res model.Transcoding