Skip to content

Commit df647bc

Browse files
committed
Rename GraphiQL dir.
1 parent 01404ca commit df647bc

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

ProcessGraphQL.module

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class ProcessGraphQL extends Process implements Module {
104104
public function executeGraphiQL()
105105
{
106106
$this->setupGraphiQLAssets();
107-
$fullFilename = $this->config->paths->site . 'modules/ProcessGraphQL/GraphiQL/full.php';
107+
$fullFilename = $this->config->paths->site . 'modules/ProcessGraphQL/graphiql/full.php';
108108
return wireRenderFile($fullFilename, [
109109
'fullGraphiQL' => true,
110110
]);
@@ -117,7 +117,7 @@ class ProcessGraphQL extends Process implements Module {
117117
public function executeGraphiQLPartial()
118118
{
119119
$this->setupGraphiQLAssets();
120-
$partialFilename = $this->config->paths->site . 'modules/ProcessGraphQL/GraphiQL/partial.php';
120+
$partialFilename = $this->config->paths->site . 'modules/ProcessGraphQL/graphiql/partial.php';
121121
return wireRenderFile($partialFilename, [
122122
'fullGraphiQL' => false,
123123
]);
File renamed without changes.

test/client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
$filename = realpath($baseDir . $_SERVER['SCRIPT_NAME']);
3333
if ($filename === $baseDir) {
34-
require_once(realpath("$baseDir/GraphiQL/full.php"));
34+
require_once(realpath("$baseDir/graphiql/full.php"));
3535
return;
3636
}
3737

0 commit comments

Comments
 (0)