gnu-social/plugins/Blacklist
brunoccast 5c0a3102ff [ROUTES] Allow accept-header specification during router creation
Router:
- Fix calls to connect, most of them were misusing the function's params

URLMapper:
- Minor fixes
- Documentation
- Add support for accept-header specification

Plugins/*:
- Fix calls to connect
2019-08-03 17:47:16 +01:00
..
actions Moving form to its own file as we do nowadays 2017-04-25 21:13:29 +02:00
classes utf8mb4 conversion on database with index adjusts 2015-02-12 18:18:55 +01:00
forms Moving form to its own file as we do nowadays 2017-04-25 21:13:29 +02:00
locale [TRANSLATION] Update Plugin POs 2019-06-09 16:10:03 +01:00
BlacklistPlugin.php [ROUTES] Allow accept-header specification during router creation 2019-08-03 17:47:16 +01:00
README Add plugin READMEs 2016-02-08 17:48:37 +00:00

README

Plugin to prevent use of nicknames or URLs on a blacklist

Installation
============
add "addPlugin('Blacklist');"
to the bottom of your config.php

Settings
========
nicknames: Array of nicknames to blacklist
urls: Array of URLs to blacklist

Example
=======
$config['blacklist']['nicknames'] = array('bad_nickname', 'worse_nickname');
$config['blacklist']['urls'] = array('http://example.org', 'http://example.net');
addPlugin('Blacklist');