You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Usher replaces standard Rails url helpers. Unfortunately Usher ones support only options hash as a parameter. They don't support usage like: post_url(@post)
Instead of rewriting all views to use post_url(:id => @post.id) I monkey-patched Usher: http://gist.github.com/393466
quick&dirty, but solved the issue for now.
Does anything prevent implementing such behavior in the plugin?
The text was updated successfully, but these errors were encountered:
Usher replaces standard Rails url helpers. Unfortunately Usher ones support only options hash as a parameter. They don't support usage like: post_url(@post)
Instead of rewriting all views to use post_url(:id => @post.id) I monkey-patched Usher:
http://gist.github.com/393466
Does anything prevent implementing such behavior in the plugin?
The text was updated successfully, but these errors were encountered: