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
2016-08-05 04:35:37 +02:00

25 lines
445 B
PHP

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