Sha256: 561f922745cc931b61e06a671d34930b036cf8d7d94a81313c0a50e8eae8db7a
Contents?: true
Size: 1.44 KB
Versions: 2
Compression:
Stored size: 1.44 KB
Contents
class ArticlesController < ApplicationController before_filter :require_user, :only => [:create, :new, :update, :edit, :destroy] def index respond_to do |format| format.html do @articles = Article.page_items params[:page] end format.atom do if feed_publisher_request? @articles = Article.feed_items render :layout => false else redirect_to feed_publisher_url end end end end def create @article = Article.new(params[:article]) @article.user = @current_user if @article.save flash[:notice] = "Success: created article." redirect_to(article_permalink_url(@article)) else render :action => 'new', :status => :unprocessable_entity end end def new @article = Article.new end def show begin @article = Article.find_by_permalink params rescue @article = Article.find params[:id] end end def update @article = Article.find params[:id] if @article.update_attributes(params[:article]) flash[:notice] = "Article updated." redirect_to article_url(@article) else render :action => 'edit', :status => :unprocessable_entity end end def edit @article = Article.find params[:id] end def destroy article = Article.find params[:id] article.destroy flash[:success] = "Article destroyed." redirect_to articles_url end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
hubbub-0.0.11 | lib/app/controllers/articles_controller.rb |
hubbub-0.0.10 | lib/app/controllers/articles_controller.rb |