mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
15 lines
393 B
JavaScript
15 lines
393 B
JavaScript
import MetableCollection from '@/lib/Metable/MetableCollection';
|
|
import ResourceFieldMetadata from '@/models/ResourceFieldMetadata';
|
|
|
|
export default class ResourceFieldMetadataCollection extends MetableCollection {
|
|
/**
|
|
* Constructor method.
|
|
*/
|
|
constructor() {
|
|
super();
|
|
|
|
this.setModel(ResourceFieldMetadata);
|
|
this.extraColumns = ['resource_id', 'resource_item_id'];
|
|
}
|
|
}
|