cluedin-widget
Version:
This project contains all the pages needed for browsing entities and searching them. The aim is to replace the CluedIn.Webapp project with this one when all the pages ( including the Admin page ) will be ported to REACT.
18 lines (16 loc) • 556 B
JavaScript
var node_env = process.env.NODE_ENV || 'development';
var modelNames = {
development: {
EntityWidgetConfiguration: 'test_EntityWidgetConfiguration'.toLowerCase(),
Layout: 'test_Layout'.toLowerCase()
},
test: {
EntityWidgetConfiguration: 'test_EntityWidgetConfiguration'.toLowerCase(),
Layout: 'test_Layout'.toLowerCase()
},
production: {
EntityWidgetConfiguration: 'EntityWidgetConfiguration'.toLowerCase(),
Layout: 'Layout'.toLowerCase()
}
};
module.exports = modelNames[ 'test' ];