docbrown/app/controllers/reading_list_items_controller.rb
Andy Zhao 263a74bcb6 Add more request specs (#460)
* Remove email blank onboarding redirect

* Add authorization specs for video upload

* Add registration spec

* Remove skip before actions for signup complete

* Use new param for abuse reports

* Remove else because it never runs

* Add more dashboard request specs

* Use let with no bang in case there are errors
2018-06-20 17:46:23 -04:00

8 lines
226 B
Ruby

class ReadingListItemsController < ApplicationController
before_action :set_cache_control_headers, only: [:index]
def index
@reading_list_items_index = true
set_surrogate_key_header "reading-list-index"
end
end