Activity
Adding 'data: { turbo: false }' & setting "local: true" worked for me
Posted in Feature Guidance - Linked Posts
Thanks Chris!
Posted in Feature Guidance - Linked Posts
False alarm guys - as I suspected ancestry gem, made this a piece of cake.
https://github.com/stefankroes/ancestry
Posted in Feature Guidance - Linked Posts
Hey Fellow GoRailers,
I have a feature that I'm implementing and some guidance would be well appreciated.
It's linked posts: every time a posts gets updated, a link is placed on the original report to the (new) updated one.
The updated post is a brand new post (i.e. it has it's own view and URL, etc.) but it is related to other posts.
eg.) So the Product Hunt raises $1 million story, there was the original and say 5 updates. By the time the post is finished and no more updates will be added, the original post should have links to the other 5. Each of the other 5 should have links back to the original and the other stories.
So my thoughts where - using the after_update callback in my Post Controller, then past that updated record into a new Post object and link it via Post_id. I had problems thinking how to create the new post without it updated the original post.
Whilst typing this I remembered that the Ancestry gem may be used, and I could treat each updated message as a child node.
Posted in Styling with Bootstrap Sass Discussion
Hey, very helpful video.
I have a question - on Bootstrap-sass Github, it recommends to also add "gem 'sass-rails', '>= 3.2'" to your Gemfile.
is that required?