mirror of
https://github.com/flarum/framework.git
synced 2025-01-10 21:35:38 +08:00
178f91aff9
This PR updates the entire extension. It will not use a library that has not been updated for years, so it should work with newer versions of PHP. Additionally, it sends more information to the Akismet API to make spam detection more accurate. The Akismet class can be used by other extensions. Todo: - [x] Convert frontend to TypeScript - [x] Call Akismet API manually - [x] Option to remove blatant spam - [x] Permission to bypass Akismet - [x] Sending additional parameters like `is_test` Nice to have, but can be left for another PR: - [ ] Suspend obvious spamers - [ ] Send `blog_lang` parameter - [ ] Checking post edits Sponsored by [forum.android.com.pl](https://forum.android.com.pl/)
11 lines
245 B
TypeScript
11 lines
245 B
TypeScript
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
export * from './src/forum';
|