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
..
2023-07-18 11:35:46 +02:00
2023-07-13 11:27:29 +01:00
2023-04-25 08:40:18 -04:00
2023-07-18 19:07:20 +01:00
2023-07-18 11:35:46 +02:00
2023-07-18 20:10:16 +02:00
2023-07-18 11:35:46 +02:00
2023-07-18 11:35:46 +02:00
2023-07-18 19:07:20 +01:00
2023-07-18 11:35:46 +02:00
2023-06-30 13:01:45 +02:00
2023-03-02 16:40:53 +01:00
2023-06-26 17:15:59 +02:00
2023-07-18 11:35:46 +02:00
2023-07-18 11:35:46 +02:00
2023-07-18 11:35:46 +02:00
2023-07-18 11:35:46 +02:00
2023-06-29 17:08:33 +02:00
2023-02-27 18:43:28 +01:00
2023-07-18 19:07:20 +01:00
2023-01-16 17:28:59 +00:00
2023-06-23 11:32:34 -05:00
2023-07-18 11:35:46 +02:00