diff --git a/app/config/collections2.php b/app/config/collections2.php
index a0af4f396c..0e5f278577 100644
--- a/app/config/collections2.php
+++ b/app/config/collections2.php
@@ -114,6 +114,90 @@ $collections = [
],
],
+ 'attributes' => [
+ '$collection' => Database::METADATA,
+ '$id' => 'attributes',
+ 'name' => 'Attributes',
+ 'attributes' => [
+ [
+ '$id' => 'type',
+ 'type' => Database::VAR_STRING,
+ 'format' => '',
+ 'size' => 256,
+ 'signed' => true,
+ 'required' => false,
+ 'default' => null,
+ 'array' => false,
+ 'filters' => [],
+ ],
+ [
+ '$id' => 'status',
+ 'type' => Database::VAR_STRING,
+ 'format' => '',
+ 'size' => 256,
+ 'signed' => true,
+ 'required' => false,
+ 'default' => null,
+ 'array' => false,
+ 'filters' => [],
+ ],
+ [
+ '$id' => 'size',
+ 'type' => Database::VAR_INTEGER,
+ 'format' => '',
+ 'size' => 0,
+ 'signed' => true,
+ 'required' => false,
+ 'default' => null,
+ 'array' => false,
+ 'filters' => [],
+ ],
+ [
+ '$id' => 'required',
+ 'type' => Database::VAR_BOOLEAN,
+ 'format' => '',
+ 'size' => 0,
+ 'signed' => true,
+ 'required' => false,
+ 'default' => null,
+ 'array' => false,
+ 'filters' => [],
+ ],
+ [
+ '$id' => 'signed',
+ 'type' => Database::VAR_BOOLEAN,
+ 'size' => 64,
+ 'signed' => true,
+ 'required' => false,
+ 'default' => null,
+ 'array' => false,
+ 'filters' => [],
+ ],
+ [
+ '$id' => 'array',
+ 'type' => Database::VAR_BOOLEAN,
+ 'size' => 64,
+ 'signed' => true,
+ 'required' => false,
+ 'default' => null,
+ 'array' => true,
+ 'filters' => [],
+ ],
+ [
+ '$id' => 'format',
+ 'type' => Database::VAR_STRING,
+ 'size' => 64,
+ 'signed' => true,
+ 'required' => false,
+ 'default' => null,
+ 'array' => true,
+ 'filters' => ['json'],
+ ],
+ ],
+ 'indexes' => [
+ ],
+ ],
+
'projects' => [
'$collection' => Database::METADATA,
'$id' => 'projects',
diff --git a/app/views/console/comps/logs.phtml b/app/views/console/comps/logs.phtml
index bfe3e2adc7..444782c384 100644
--- a/app/views/console/comps/logs.phtml
+++ b/app/views/console/comps/logs.phtml
@@ -32,7 +32,8 @@ $interval = floor((int)$this->getParam('interval', 0) / 86400);
Unknown
Anonymous User
-
+
+
API Key