Jay Killeen

Results 16 comments of Jay Killeen

Furthermore when I run `SELECT COUNT(*) FROM tags; SELECT COUNT(*) FROM taggings;` I get `0,0`.

``` sql casts_development=# SELECT * FROM taggings; id | tag_id | taggable_type | taggable_id | tagger_type | tagger_id | context | created_at ----+--------+---------------+-------------+-------------+-----------+---------+------------ (0 rows) casts_development=# SELECT * FROM tags;...

`c.save!` gives me the error `ActiveRecord::RecordInvalid: Validation failed: Tagger must exist`

My workaround for this was to just add the `acts_as_tagger` to my user model. I guess I needed it anyway as I have devise running but the only person tagging...

Sorry I don't have an exact solution but on this [GoRails Guide](https://gorails.com/episodes/at-mentions-with-actiontext) the user mentioned in a comment is a clickable link, which does not seem relevant, except that @excid3...

I also had this issue. I was following a [GoRails guide](https://gorails.com/episodes/at-mentions-with-actiontext) to add user mentions in Actiontext. My `_user.html.erb` was rendering out the username as a link for the mention...

Ah cool. I can confirm that adding the below to the Action Text initializer file allowed the `, data: { turbo: false }` part of my path for to be...

For anyone else here trying to solve the Trix links on turbo frames causing content to disappear. It is not the same as this issue, but the problems likely come...

Thanks @fedegl. My experience was similar and I had followed @excid3's tutorial on [GoRails](https://gorails.com/episodes/devise-hotwire-turbo) to make Devise compatible with Turbo. This included adding a `TurboFailureApp` adding a `TurboController` and adding...

Setting up a new project with rails 7.1.2 and encountering this issue again (in a way). Seeing this error when trying to restart the server after copying my initializer file...