* 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
8 lines
226 B
Ruby
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
|