Created
March 22, 2017 22:16
-
-
Save 1cg/67490ce6c20398f1ecfb5331ec8dbabf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def ic_form_for(record, options = {}, &block) | |
ic_attribute = record.persisted? ? "ic-put-to" : "ic-post-to" | |
ic_html = {html: {ic_attribute => url_for(record)}} | |
simple_form_for(record, ic_html.merge(options), &block) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment