Adds specification for name clean-up

This commit is contained in:
2016-02-12 14:24:50 +01:00
parent a9ca878be1
commit cadd630a44
2 changed files with 73 additions and 0 deletions

View File

@@ -4,6 +4,8 @@ services.factory('albumService',['$http','$log','$q', function($http,$log,$q) {
function cleanupFields(album) {
album.serie = album.série;
album.série = undefined;
album.editeur = album.éditeur;
album.éditeur = undefined;
return album;
}
function get(id) {