Ask A Question

Notifications

You’re not receiving notifications from this thread.

How update value which run from strong params??

Taras asked in General

I have action(strong parameters) in controller:

def home_task_params
     params.require(:home_task).permit(:subject, :description, :data)
end

i want do something similar to this

def create
@home_task = HomeTask.create(:subject => home_task_params.subject, :description => home_task_params.description, :day => home_task_params.data,
 :data => home_task_params.data, :class_room => current_user.class_room )
 end

I need it because I want to modify the data before recording to the database?
How do i implement it???TY

Reply
Reply
Join the discussion
Create an account Log in

Want to stay up-to-date with Ruby on Rails?

Join 81,842+ developers who get early access to new tutorials, screencasts, articles, and more.

    We care about the protection of your data. Read our Privacy Policy.

    Screencast tutorials to help you learn Ruby on Rails, Javascript, Hotwire, Turbo, Stimulus.js, PostgreSQL, MySQL, Ubuntu, and more.

    © 2024 GoRails, LLC. All rights reserved.