Home Reference Source Repository

js/models/harvest/sources.js

import {List} from 'models/base';
import log from 'logger';


export default class HarvestSources extends List {
    constructor(options) {
        super(options);
        this.$options.ns = 'harvest';
        this.$options.fetch = 'list_harvest_sources';
    }
};