From 054c897820057f98959050cc8c6b1c7d8c592f79 Mon Sep 17 00:00:00 2001 From: Maxwell Salzberg Date: Tue, 9 Aug 2011 18:10:27 -0700 Subject: [PATCH] authentication required on the token show page because it 500s if you are not logged in --- app/controllers/tokens_controller.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/controllers/tokens_controller.rb b/app/controllers/tokens_controller.rb index 555f26246..b9bae3fcf 100644 --- a/app/controllers/tokens_controller.rb +++ b/app/controllers/tokens_controller.rb @@ -1,4 +1,5 @@ class TokensController < ApplicationController + before_filter :authenticate_user! def show end end