Skip to content

Commit

Permalink
feat: add user account settings to available announcement pages (#3526)
Browse files Browse the repository at this point in the history
  • Loading branch information
samerton authored Jul 15, 2024
1 parent 11bd9a1 commit 771d21d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions modules/Core/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,14 @@ public function __construct(Language $language, Pages $pages, User $user, Naviga
}
$pages->add('Core', '/oauth', 'pages/oauth.php');

$pages->add('Core', '/user', 'pages/user/index.php');
$pages->add('Core', '/user/settings', 'pages/user/settings.php');
$pages->add('Core', '/user/messaging', 'pages/user/messaging.php');
$pages->add('Core', '/user/alerts', 'pages/user/alerts.php');
$pages->add('Core', '/user/notification_settings', 'pages/user/notification_settings.php');
$pages->add('Core', '/user/placeholders', 'pages/user/placeholders.php');
$pages->add('Core', '/user', 'pages/user/index.php', 'cc_overview');
$pages->add('Core', '/user/settings', 'pages/user/settings.php', 'cc_settings');
$pages->add('Core', '/user/messaging', 'pages/user/messaging.php', 'cc_messaging');
$pages->add('Core', '/user/alerts', 'pages/user/alerts.php', 'cc_alerts');
$pages->add('Core', '/user/notification_settings', 'pages/user/notification_settings.php', 'cc_notification_settings');
$pages->add('Core', '/user/placeholders', 'pages/user/placeholders.php', 'cc_placeholders');
$pages->add('Core', '/user/acknowledge', 'pages/user/acknowledge.php');
$pages->add('Core', '/user/connections', 'pages/user/connections.php');
$pages->add('Core', '/user/connections', 'pages/user/connections.php', 'cc_connections');

// Panel
$pages->add('Core', '/panel', 'pages/panel/index.php');
Expand Down

0 comments on commit 771d21d

Please sign in to comment.