* split 'profiler' into separate endpoints * implement profile=avatar endpoint (though it doesn't do a whole lot and isn't referenced (see comments))
17 lines
295 B
PHP
17 lines
295 B
PHP
<?php
|
|
|
|
namespace Aowow;
|
|
|
|
if (!defined('AOWOW_REVISION'))
|
|
die('illegal access');
|
|
|
|
|
|
// page is generated by jScript .. does this need to be here then..?
|
|
class ProfileSummaryResponse extends TextResponse
|
|
{
|
|
public function __construct() {}
|
|
|
|
protected function generate() : void {}
|
|
}
|
|
|
|
?>
|