admin-on-rest-fr05t1k
Version:
A frontend Framework for building admin applications on top of REST services, using ES6, React and Material UI
13 lines (11 loc) • 380 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var CRUD_GET_ONE_REFERENCE = exports.CRUD_GET_ONE_REFERENCE = 'CRUD_GET_ONE_REFERENCE';
var crudGetOneReference = exports.crudGetOneReference = function crudGetOneReference(resource, id) {
return {
type: CRUD_GET_ONE_REFERENCE,
payload: { resource: resource, id: id }
};
};