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
445 B
PHP
Raw Normal View History

<?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
{
2016-08-05 02:35:37 +00:00
/**
* Get the notification history.
* @return string
*/
public function history()
{
2016-08-02 20:35:12 +00:00
return view('settings/notifications/history');
}
}