* Removed unapprovals, added post flags and post appeals (still need to update tests)

* Restyled text
This commit is contained in:
albert
2011-03-28 18:48:02 -04:00
parent 42627be1d3
commit f9c961cdc6
66 changed files with 642 additions and 403 deletions

View File

@@ -10,7 +10,8 @@ class PostsController < ApplicationController
def show
@post = Post.find(params[:id])
@unapproval = Unapproval.new(:post_id => @post)
@post_flag = PostFlag.new(:post_id => @post)
@post_appeal = PostAppeal.new(:post_id => @post)
respond_with(@post)
end