This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/libraries/Controllers/Settings/NotificationsController.php
2016-04-01 23:44:31 +02:00

25 lines
410 B
PHP

<?php
/**
* Holds the notifications section controller.
*
* @package Sakura
*/
namespace Sakura\Controllers\Settings;
use Sakura\Template;
/**
* Notification settings.
*
* @package Sakura
* @author Julian van de Groep <me@flash.moe>
*/
class NotificationsController extends Controller
{
public function history()
{
return Template::render('settings/notifications/history');
}
}