Gleb Mazovetskiy

Results 244 comments of Gleb Mazovetskiy

We also currently also use the color to indicate locked posts btw. > As a side note, might be nice to have an option for the avatars to be gmail/trello...

> @moondcr's graphic solution sounds good To clarify their solution, IIRC, the large circle has the last poster, and the small circle the topic creator (or maybe vice versa). I...

Perhaps you can avoid spam by adding `invisible_captcha` on registration? Here is how `thredded_create_app` does it: https://github.com/thredded/thredded_create_app/blob/master/lib/thredded_create_app/tasks/add_invisible_captcha.rb It effectively reduced the number of spam signups to 0 for my forums.

I don't moderate many posts yeah. > Is there an easy way to tell the messageboard list not to show these by default? You'd need to add and implement a...

Consider adding a setting to Thredded to hide blocked content. It can then be applied in `topics#index` and `topics#show`: https://github.com/thredded/thredded/blob/13f4861b978a1450a0852a11f98582b4fb7ebac0/app/controllers/thredded/topics_controller.rb#L23 https://github.com/thredded/thredded/blob/13f4861b978a1450a0852a11f98582b4fb7ebac0/app/controllers/thredded/topics_controller.rb#L57 Something like this should do it: ```ruby scope =...

@zoopyserg gemoji dependency has been removed from Thredded, so this plugin should be feasible now.

We have `extract_block_from_paragraph!` which works around a similar issue for paragraphs. (https://github.com/thredded/thredded/blob/c5bd833d1f10237d235ce6dc812526460ec65023/lib/thredded/html_pipeline/utils.rb#L10) Perhaps we can add something similar for bolding/italics/underscore?

Yes, that makes sense. It should still be allowed within paragraphs though.

> From what I've read, it seems that the view hooks plugins can only help to add content, not to remove it. While the view hooks *can* remove or entirely...

Makes sense, this would make a great case for a plugin