Skip to content

Commit

Permalink
add new page for implementing likes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben-G committed May 29, 2015
1 parent 55b2b23 commit cd51375
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions P16-Implementing-Likes/content.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: "Implementing the Like feature"
slug: parse-implement-like
---

In this step we will tackle _the_ core feature of _Makestagram_. Liking posts!
We will need to tackle that feature from three different angles:

1. We need new Parse queries to fetch/add/remove likes of posts
2. We need to extend the `Post` model to store the likes that belong to it
3. We need to connect the UI to our new code. That means, for example, displaying the red heart if a user
has liked a certain post

We will start with adding new Parse queries! However, I first want to suggest some further cleanup of our existing Parse query!

#Cleaning up the Timeline Query - once again

Take a look at ...

0 comments on commit cd51375

Please sign in to comment.