aowow/endpoints/profile/purge.php
Sarjuuk 69df20af63 Template/Update (Part 41)
* split 'profiler' into separate endpoints
 * implement profile=avatar endpoint (though it doesn't do a whole lot and isn't referenced (see comments))
2025-09-25 15:58:56 +02:00

22 lines
496 B
PHP

<?php
namespace Aowow;
if (!defined('AOWOW_REVISION'))
die('illegal access');
class ProfilePurgeResponse extends TextResponse
{
protected bool $requiresLogin = true;
/* params
id: <prId>
data: <mode> [string, tabName]
return
null
*/
protected function generate() : void { } // removes completion data (as uploaded by the wowhead client) Just fail silently if someone triggers this manually
}
?>