discourse/app/assets
Jarek Radosz 2a96064e6b
DEV: Modernize topic-bulk-actions (#22186)
Introduces new plugin api for adding bulk topic actions:

Example:

```js
api.addBulkActionButton({
  label: "super_plugin.bulk.enhance",
  icon: "magic",
  class: "btn-default",
  visible: ({ currentUser, siteSettings }) => siteSettings.super_plugin_enabled && currentUser.staff,
  async action({ setComponent }) {
    await doSomething(this.model.topics);
    setComponent(MyBulkModal);
  },
});
```
2023-07-18 20:10:16 +02:00
..
images
javascripts DEV: Modernize topic-bulk-actions (#22186) 2023-07-18 20:10:16 +02:00
stylesheets UX: firefox fix for shorthand modal width (#22638) 2023-07-17 13:16:45 +02:00