AllenYuan

public profile route

May 9th, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //...
  2. UserSchema.methods.toProfileJSONFor = function() {
  3.   return {
  4.     username: this.username,
  5.     bio: this.bio,
  6.     image: this.image || 'https://static.productionready.io/images/smiley-cyrus.jpg',
  7.     following: false
  8.   };
  9. };
  10. //...
Add Comment
Please, Sign In to add comment