Skip to content

Instantly share code, notes, and snippets.

@mbuttler
Created September 5, 2015 18:38
Show Gist options
  • Save mbuttler/95a375dfda13dfdd1cc4 to your computer and use it in GitHub Desktop.
Save mbuttler/95a375dfda13dfdd1cc4 to your computer and use it in GitHub Desktop.
Threadly - Posts Controller
class PostsController < ApplicationController
def index
@new_post = Post.new
@all_posts = Post.order(created_at: :desc).all
end
def new
@new_post = Post.new
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment