I am title
2022/10/11
Strong Params
It forces you to whitelist the attributes that can be saved.
def book_params
params.require(:book).permit(:title, :author, :cover, :language)
end
2022/10/11
It forces you to whitelist the attributes that can be saved.
def book_params
params.require(:book).permit(:title, :author, :cover, :language)
end