Skip to content

Instantly share code, notes, and snippets.

@georgesboris
Last active October 16, 2017 21:21
Show Gist options
  • Save georgesboris/d11a8ce8bb3d080d4773a850a09b0e94 to your computer and use it in GitHub Desktop.
Save georgesboris/d11a8ce8bb3d080d4773a850a09b0e94 to your computer and use it in GitHub Desktop.
firebase-app - paths
module.exports = {
posts: 'posts',
post: postId => `posts/${postId}`,
postTitle: postId => `posts/${postId}/title`,
postBody: postId => `posts/${postId}/body`,
postCreatedAt: postId => `posts/${postId}/createdAt`,
postCreatedBy: postId => `posts/${postId}/createdBy`,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment