10 lines
213 B
JavaScript
10 lines
213 B
JavaScript
const Scope = require('flitter-orm/src/model/Scope')
|
|
|
|
class ActiveScope extends Scope {
|
|
async filter(to_filter) {
|
|
return to_filter.equal('Active', true)
|
|
}
|
|
}
|
|
|
|
module.exports = exports = ActiveScope
|