Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Commit

Permalink
v2.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
rijkvanzanten committed Dec 24, 2018
1 parent e2be26e commit 9c6464b
Show file tree
Hide file tree
Showing 155 changed files with 223 additions and 196 deletions.
7 changes: 7 additions & 0 deletions migrations/db/seeds/FieldsSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -954,6 +954,13 @@ public function run()
'interface' => 'tags',
'locked' => 1
],
[
'collection' => 'directus_settings',
'field' => 'project_url',
'type' => \Directus\Database\Schema\DataTypes::TYPE_STRING,
'interface' => 'text-input',
'locked' => 1
],


// Users
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

use Phinx\Migration\AbstractMigration;

class AddProjectUrlSettingField extends AbstractMigration
{
public function up()
{
$result = $this->query('SELECT 1 FROM `directus_settings` WHERE `key` = "project_url";')->fetch();

if (!$result) {
$this->execute("INSERT INTO `directus_settings` (`key`, `value`) VALUES ('project_url', '');");
}
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/extensions/core/interfaces/activity-icon/display.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/extensions/core/interfaces/activity-icon/input.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
.small[data-v-26a8b1]{width:100%;max-width:var(--width-medium)}
.small[data-v-b9435a]{width:100%;max-width:var(--width-medium)}
2 changes: 1 addition & 1 deletion public/extensions/core/interfaces/activity-icon/input.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/extensions/core/interfaces/button-group/input.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/extensions/core/interfaces/button-group/input.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/extensions/core/interfaces/calendar/input.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/extensions/core/interfaces/calendar/input.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/extensions/core/interfaces/checkboxes/input.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/extensions/core/interfaces/checkboxes/input.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/extensions/core/interfaces/code/display.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
i.material-icons[data-v-c26ed9]{cursor:help}i.material-icons.empty[data-v-c26ed9]{color:var(--lighter-gray)}
i.material-icons[data-v-02c53a]{cursor:help}i.material-icons.empty[data-v-02c53a]{color:var(--lighter-gray)}
Loading

0 comments on commit 9c6464b

Please sign in to comment.