view app/controllers/tweets_controller.rb @ 25:70d70736faee

Properly rescue 403 and 404.
author edogawaconan <me@myconan.net>
date Fri, 05 Sep 2014 23:38:57 +0900
parents 207917e41964
children 03f904c070f7
line wrap: on
line source

class TweetsController < ApplicationController
  def show
    @tweets = Tweet.new(params[:id]).timeline
    @user = @tweets.first.user
  rescue Twitter::Error::NotFound
    head :not_found
  rescue Twitter::Error::Unauthorized
    head :forbidden
  end
end