Updated some controllers and routes to exclude not yet finished stuff.

This commit is contained in:
James Cole
2014-07-02 21:22:13 +02:00
parent 092a79dc75
commit 3e59c2792c
6 changed files with 11 additions and 96 deletions

View File

@@ -4,7 +4,7 @@ return [
'fetch' => PDO::FETCH_CLASS,
'default' => 'mysql',
'connections' => [
'mysql' => [
'mysql' => [
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'forge',
@@ -14,18 +14,6 @@ return [
'collation' => 'utf8_unicode_ci',
'prefix' => '',
],
// previous database, if present:
'old-firefly' => [
'driver' => 'mysql',
'host' => 'localhost',
'database' => '(previous database)',
'username' => '',
'password' => '',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
],
],
'migrations' => 'migrations',
'redis' => [

View File

@@ -2,7 +2,7 @@
return [
'driver' => 'smtp',
'host' => ';',
'host' => '',
'port' => 587,
'from' => ['address' => '', 'name' => 'Firefly V'],
'encryption' => 'tls',