docbrown/app/controllers/reading_list_items_controller.rb
2018-02-28 16:11:08 -05:00

8 lines
270 B
Ruby

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