aboutsummaryrefslogtreecommitdiff
blob: 59e36e212d21c62131db4d756c2c5b52c30d760c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class QuestionContentEmailsController < ApplicationController

  hobo_model_controller

  auto_actions      :create, :update, :edit
  auto_actions_for  :question, :new

  def new_for_question
    hobo_new  QuestionContentEmail.new(:question_id => params[:question_id])
  end

end