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/app/Controllers/Settings/NotificationsController.php

25 lines
410 B
PHP
Raw Normal View History

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