Arguments for the anonymous function of the entity url customisation were changed.
- nga.entity('comments').url(function(view, entityId) {
- return '/comments/' + view.name() + '/' + entityId;
+ nga.entity('comments').url(function(entityName, viewType, identifierValue, identifierName) {
+ return '/comments/' + entityName + '_' + viewType + '/' + identifierValue;The Field.identifier(true) does not exist anymore. Instead, you must specify the identifier in the associated entity.
- nga.field('id').identifier(true)
+ entity.identifier(nga.field('id'))