test fixes and changes for release

This commit is contained in:
Dennis Eichhorn 2022-12-25 00:06:17 +01:00
parent e71a13bc48
commit 93934f5b38
2 changed files with 20 additions and 1 deletions

View File

@ -333,7 +333,7 @@ final class TaskMapper extends DataMapperFactory
->where($userWhere)
->andWhere(self::TABLE . '_d1.' . self::PRIMARYFIELD, '=', $task);
return !empty($query->execute()->fetchAll());
return !empty($query->execute()?->fetchAll());
}
/**

View File

@ -257,6 +257,25 @@ $CONFIG = [
'root' => '/',
'https' => false,
],
'app' => [
'path' => __DIR__,
'default' => [
'app' => 'Backend',
'id' => 'backend',
'lang' => 'en',
'theme' => 'Backend',
'org' => 1,
],
'domains' => [
'127.0.0.1' => [
'app' => 'Backend',
'id' => 'backend',
'lang' => 'en',
'theme' => 'Backend',
'org' => 1,
],
],
],
'socket' => [
'master' => [
'host' => '127.0.0.1',