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

23 lines
372 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
{
public function history()
{
return $this->go('notifications.history');
}
}