mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 02:24:16 +00:00
20 lines
267 B
JavaScript
20 lines
267 B
JavaScript
import { Track } from "@db_models"
|
|
|
|
export default {
|
|
key: "tracks",
|
|
model: Track,
|
|
query: (keywords) => {
|
|
return {
|
|
public: true,
|
|
$or: [
|
|
{
|
|
title: new RegExp(keywords, "i"),
|
|
},
|
|
{
|
|
artist: new RegExp(keywords, "i"),
|
|
},
|
|
],
|
|
}
|
|
},
|
|
}
|