Addition to previous commit

This commit is contained in:
slawkens 2025-05-14 10:39:11 +02:00
parent bf06bed385
commit ee360386d8
5 changed files with 12 additions and 6 deletions

View File

@ -17,7 +17,7 @@ describe('Check Public Pages', () => {
it('Go to changelog page', () => { it('Go to changelog page', () => {
cy.visit({ cy.visit({
url: Cypress.env('URL') + '/changelog', url: Cypress.env('URL') + '/change-log',
method: 'GET', method: 'GET',
}) })
}) })
@ -132,7 +132,7 @@ describe('Check Public Pages', () => {
it('Go to server info page', () => { it('Go to server info page', () => {
cy.visit({ cy.visit({
url: Cypress.env('URL') + '/server-info', url: Cypress.env('URL') + '/ots-info',
method: 'GET', method: 'GET',
}) })
}) })

View File

@ -0,0 +1,3 @@
<?php
require 'change-log.php';

View File

@ -0,0 +1,3 @@
<?php
require 'ots-info.php';

View File

@ -4,7 +4,7 @@ return [
MENU_CATEGORY_NEWS => [ MENU_CATEGORY_NEWS => [
'Latest News' => 'news', 'Latest News' => 'news',
'News Archive' => 'news/archive', 'News Archive' => 'news/archive',
'Changelog' => 'changelog', 'Changelog' => 'change-log',
], ],
MENU_CATEGORY_ACCOUNT => [ MENU_CATEGORY_ACCOUNT => [
'Account Management' => 'account/manage', 'Account Management' => 'account/manage',
@ -28,7 +28,7 @@ return [
MENU_CATEGORY_LIBRARY => [ MENU_CATEGORY_LIBRARY => [
'Monsters' => 'monsters', 'Monsters' => 'monsters',
'Spells' => 'spells', 'Spells' => 'spells',
'Server Info' => 'server-info', 'Server Info' => 'ots-info',
'Commands' => 'commands', 'Commands' => 'commands',
'Exp Stages' => 'exp-stages', 'Exp Stages' => 'exp-stages',
'Gallery' => 'gallery', 'Gallery' => 'gallery',

View File

@ -4,7 +4,7 @@ return [
MENU_CATEGORY_NEWS => [ MENU_CATEGORY_NEWS => [
'Latest News' => 'news', 'Latest News' => 'news',
'News Archive' => 'news/archive', 'News Archive' => 'news/archive',
'Changelog' => 'changelog', 'Changelog' => 'change-log',
], ],
MENU_CATEGORY_ACCOUNT => [ MENU_CATEGORY_ACCOUNT => [
'Account Management' => 'account/manage', 'Account Management' => 'account/manage',
@ -33,7 +33,7 @@ return [
'Commands' => 'commands', 'Commands' => 'commands',
'Exp Stages' => 'exp-stages', 'Exp Stages' => 'exp-stages',
'Gallery' => 'gallery', 'Gallery' => 'gallery',
'Server Info' => 'server-info', 'Server Info' => 'ots-info',
'Exp Table' => 'exp-table', 'Exp Table' => 'exp-table',
'FAQ' => 'faq', 'FAQ' => 'faq',
], ],