Merge pull request #87 from creative-commoners/pulls/4/graphql4-fix-and-tablenames

FIX GraphQL4 config, add table names to pages
This commit is contained in:
Ingo Schommer 2021-02-26 09:45:55 +13:00 committed by GitHub
commit 4412afe822
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 38 additions and 33 deletions

View File

@ -23,6 +23,7 @@ SilverStripe\Control\Director:
SilverStripe\GraphQL\Schema\Schema:
schemas:
frameworktest:
config:
modelConfig:
type_mapping:
SilverStripe\FrameworkTest\Model\Company: Company

View File

@ -15,6 +15,8 @@ if (!class_exists(Page::class)) {
*/
class MultiTabPage extends Page
{
private static $table_name = 'MultiTabPage';
private static $db = [
'SecondTabFirstField' => 'Varchar(50)',
'ThirdTabFirstField' => 'Varchar(50)',

View File

@ -14,6 +14,8 @@ if (!class_exists(Page::class)) {
*/
class SingleTabPage extends Page
{
private static $table_name = 'SingleTabPage';
public function getCMSValidator()
{
return new RequiredFields([