discourse/plugins/chat
Joffrey JAFFEUX f0d82de5d9
DEV: fix flakeyness with drawer specs (#22476)
Chat drawer was using the `DiscourseURL` hook `afterRouteComplete`. This hook suffer from a very poor implementation which makes it very unreliable:

```javascript
if (typeof opts.afterRouteComplete === "function") {
  schedule("afterRender", opts.afterRouteComplete);
}
```

This commit attempts to return the promise from `handleURL` to directly use it and have a very reliable after transition hook.
2023-07-07 00:46:04 +02:00
..
app FIX: correctly makes dm creator to follow channel (#22470) 2023-07-06 21:42:19 +02:00
assets DEV: fix flakeyness with drawer specs (#22476) 2023-07-07 00:46:04 +02:00
config FIX: Add missing chat translations 2023-07-06 11:35:02 +02:00
db FEATURE: Track last_viewed_at datetime for channel members (#22294) 2023-06-29 09:22:17 +10:00
lib FEATURE: new jump to channel menu (#22383) 2023-07-05 18:18:27 +02:00
public DEV: Move `discourse-chat` to the core repo. (#18776) 2022-11-02 10:41:30 -03:00
spec DEV: fix flakeyness with drawer specs (#22476) 2023-07-07 00:46:04 +02:00
test/javascripts DEV: Remove `OK` pretender helper (#22438) 2023-07-06 20:39:23 +02:00
README.md DEV: Chat service object initial implementation (#19814) 2023-02-13 13:09:57 +01:00
plugin.rb FIX: ActiveModel::Types :array load error in production (#22377) 2023-07-03 11:30:09 +10:00

README.md

This plugin is still in active development and may change frequently

Documentation

The Discourse Chat plugin adds chat functionality to your Discourse so it can natively support both long-form and short-form communication needs of your online community.

For user documentation, see Discourse Chat.

For developer documentation, see Discourse Documentation.