authentication required on the token show page because it 500s if you are not logged in

This commit is contained in:
Maxwell Salzberg 2011-08-09 18:10:27 -07:00
parent 1afc3f36f5
commit 054c897820

View file

@ -1,4 +1,5 @@
class TokensController < ApplicationController class TokensController < ApplicationController
before_filter :authenticate_user!
def show def show
end end
end end