Method: Admin::TestimonialsController#create
- Defined in:
- app/controllers/c/admin/testimonials_controller.rb
#create ⇒ Object
12 13 14 15 16 17 18 19 |
# File 'app/controllers/c/admin/testimonials_controller.rb', line 12 def create @testimonial = C::Testimonial.new(testimonial_params) if @testimonial.save redirect_to testimonials_path, notice: 'Testimonial created' else render :new end end |