after playing for a while with angular, I think a customer filter would be a much wiser approach, rather than adding a property on $resource.
here is how to do a filter
app.filter('getFullName', function () {
return function (input) {
if (input) {
return input.first_name + ' ' + input.last_name;
} else {
return 'default';
}
};
});