add the before filter configuration back

This commit is contained in:
Matt Rogers 2013-04-30 20:19:27 -05:00
parent d1ff0daf6f
commit 83273ac342

View file

@ -1,4 +1,7 @@
class CalendarController < ApplicationController
skip_before_filter :login_required, :only => [:show]
prepend_before_filter :login_or_feed_token_required, :only => [:show]
def show
@source_view = 'calendar'
@page_title = t('todos.calendar_page_title')