Mike Schutte

Results 5 comments of Mike Schutte

I am experiencing this too with an upgrade to 1.7.0 Rails 5.1.7 Not using webpacker yet. The assets are on the staging server with a hash/thumbprint suffix. So `logo.svg` is...

👋 hello! Any movement on this by chance? Thanks!

@danilowoz I don't know if you're still going for this, but I ended up copying the pattern in https://github.com/storyblok/storyblok/blob/master/src/tasks/pull-components.js and using a storyblok client initialized with an oauth token. So...

Looks like they have new repos: https://github.com/storyblok/storyblok-cli/blob/cce1fef04636c3538c1fd3135471ec6cf98a2832/src/tasks/pull-components.js

To expand on @ferezoz 's note, and for anyone who is dealing with a route that has multiple params, don't forget to cover all `[id]` patterns: ```js push('/[id]/admin/spells/[spell_id]', `/${id}/admin/spells/${spell.id}`); ```