Permalink
Browse files

Remove email address from author property

Temporarily remove adding the email address to the author property.
Unless this can be configurable, best not to add it.

Part of openspending/openspending#1375
  • Loading branch information...
brew committed Jul 9, 2018
1 parent 907882f commit 160480f964c3d4c8898fdc82e978ebe5ccff6475
Showing with 1 addition and 2 deletions.
  1. +1 −2 app/front/scripts/services/package.js
@@ -195,8 +195,7 @@ angular.module('Application')
var dataPackage = fiscalDataPackage.createFiscalDataPackage(
attributes, modifiedResources);
dataPackage.owner = LoginService.userId;
dataPackage.author = LoginService.name +
' <' + LoginService.email + '>';
dataPackage.author = LoginService.name;
var triggerDigest = function(immediateCall) {
if (_.isFunction(triggerDigest)) {

0 comments on commit 160480f

Please sign in to comment.