mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
remove unneeded info from user api response
This commit is contained in:
parent
1d1674547f
commit
44973ba255
1 changed files with 5 additions and 1 deletions
|
@ -114,7 +114,11 @@ users = {
|
|||
args = {id: this.user};
|
||||
}
|
||||
|
||||
return dataProvider.User.read(args);
|
||||
var filteredAttributes = ['password', 'created_by', 'updated_by'];
|
||||
|
||||
return dataProvider.User.read(args).then(function omitAttrs(result) {
|
||||
return _.omit(result, filteredAttributes);
|
||||
});
|
||||
},
|
||||
|
||||
// #### Edit
|
||||
|
|
Loading…
Add table
Reference in a new issue