metamaps/metamaps

View on GitHub
frontend/src/Metamaps/DataModel/MapperCollection.js

Summary

Maintainability
A
0 mins
Test Coverage
import Backbone from 'backbone'
try { Backbone.$ = window.$ } catch (err) {}

import Mapper from './Mapper'

const MapperCollection = Backbone.Collection.extend({
  model: Mapper,
  url: '/users'
})

export default MapperCollection