Refactor loadGenres, remove duplication

This commit is contained in:
Deluan 2024-04-28 14:31:15 -04:00
parent de90152a71
commit 31fcab07d2
7 changed files with 68 additions and 82 deletions

View file

@ -42,6 +42,10 @@ func loggedUser(ctx context.Context) *model.User {
}
}
func (r sqlRepository) getTableName() string {
return r.tableName
}
func (r sqlRepository) newSelect(options ...model.QueryOptions) SelectBuilder {
sq := Select().From(r.tableName)
sq = r.applyOptions(sq, options...)