Skip to content

Commit

Permalink
campaignd: Forgot to add a Doxygen comment to the last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
irydacea committed Jun 4, 2014
1 parent 344fa79 commit f5aa542
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/campaign_server/blacklist.hpp
Expand Up @@ -22,6 +22,25 @@
namespace campaignd
{

/**
* Add-on blacklist table.
*
* A path to a blacklist WML file may be provided in the campaignd
* configuration. The file's contents are used to maintain a blacklist to
* check certain add-on metadata fields against it every time a new or
* existing add-on is uploaded ([upload] request).
*
* Blacklist entries are glob patterns accepting the '*' and '?' wildcards for
* matching any number of characters and a single character, respectively. The
* lists are expected to be comma-delimited.
*
* ip = (net address masks)
* email = (email address patterns)
* name = (add-on id/dirname patterns)
* title = (add-on title patterns)
* author = (add-on author patterns)
* description = (add-on description patterns)
*/
class blacklist : private boost::noncopyable
{
public:
Expand Down

0 comments on commit f5aa542

Please sign in to comment.