Ask users about content on their dashboard

This commit is contained in:
Andrew Brown 2016-08-06 02:53:37 -05:00
parent 246e9707a0
commit bfef0ca8f2

View File

@ -15,9 +15,9 @@ class MainController < ApplicationController
end
def dashboard
# content_type = %w(characters locations items).sample
# @content = current_user.send(content_type).sample
content_type = %w(characters locations items).sample
@content = current_user.send(content_type).sample
# # TODO: get content_param_list from class controller to show question
# @question = QuestionService.question(Content.new @content.slice(*content_param_list))
@question = QuestionService.question(Content.new @content.slice(*@content.attributes.keys))
end
end