mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/17010] Add first webpush controller and start ucp integration
PHPBB3-17010
This commit is contained in:
27
phpBB/phpbb/ucp/controller/webpush.php
Normal file
27
phpBB/phpbb/ucp/controller/webpush.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace phpbb\ucp\controller;
|
||||
|
||||
use phpbb\config\config;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
|
||||
class webpush
|
||||
{
|
||||
/** @var config */
|
||||
protected $config;
|
||||
|
||||
public function __construct(config $config)
|
||||
{
|
||||
$this->config = $config;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle password reset request
|
||||
*
|
||||
* @return Response
|
||||
*/
|
||||
public function request(): Response
|
||||
{
|
||||
return new Response('foo');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user