2013-04-30 20:09:46 -05:00
|
|
|
class CalendarController < ApplicationController
|
2013-04-30 20:19:27 -05:00
|
|
|
skip_before_filter :login_required, :only => [:show]
|
|
|
|
|
prepend_before_filter :login_or_feed_token_required, :only => [:show]
|
|
|
|
|
|
2013-04-30 20:09:46 -05:00
|
|
|
def show
|
|
|
|
|
@source_view = 'calendar'
|
|
|
|
|
@page_title = t('todos.calendar_page_title')
|
|
|
|
|
|
|
|
|
|
@calendar = Todos::Calendar.new(current_user)
|
|
|
|
|
@projects = @calendar.projects
|
|
|
|
|
@count = current_user.todos.not_completed.are_due.count
|
|
|
|
|
@due_all = current_user.todos.not_completed.are_due.reorder("due")
|
|
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
|
format.html
|
|
|
|
|
format.ics {
|
|
|
|
|
render :action => 'calendar', :layout => false, :content_type => Mime::ICS
|
|
|
|
|
}
|
|
|
|
|
format.xml {
|
|
|
|
|
render :xml => @due_all.to_xml( *to_xml_params )
|
|
|
|
|
}
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|