class FeedbackController < ApplicationController def new; end def create if params[:message].present? Mailer.feedback(current_user, params[:message]).deliver_now redirect_to root_url, notice: t('.notice') else render action: 'new' end end end