We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Model.new 는 인자로 컬럼을 집어넣을 수 있습니다. 가령
Model.new
message = Message.new message.content = content message.notice_id = notice_id
는 다음과 같이 한 줄로 줄일 수 있습니다.
message = Message.new(content: content, notice_id: notice_id)
다른 코드들도 살펴보고 Model.new에 인자로 컬럼값을 집어넣을 수 있는 부분은 리펙토링 하면 좋겠네요. ㅎㅎ
The text was updated successfully, but these errors were encountered:
removed SendSMS.
926e2c9
renamed SendSMS2 to SMSSender. Original SMSSender is Admin::Messages::SendMessageService now. (applied #338, #339)
No branches or pull requests
Model.new
는 인자로 컬럼을 집어넣을 수 있습니다. 가령는 다음과 같이 한 줄로 줄일 수 있습니다.
다른 코드들도 살펴보고
Model.new
에 인자로 컬럼값을 집어넣을 수 있는 부분은 리펙토링 하면 좋겠네요. ㅎㅎThe text was updated successfully, but these errors were encountered: