loomio/loomio

View on GitHub
vue/src/shared/record_store/record_view.js

Summary

Maintainability
A
0 mins
Test Coverage
export default class RecordView {
  constructor({name, recordStore, collections,  query}) {
    this.collectionNames = [];
    this.name = "unnamedView";
    
    this.collectionNames = collections;
    this.name = name;
    this.recordStore = recordStore;
    this.query = query;
    this.query(this.recordStore);
  }
};