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

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rijkvanzanten committed Oct 12, 2018
1 parent ba55719 commit 1178d97
Show file tree
Hide file tree
Showing 136 changed files with 581 additions and 473 deletions.
7 changes: 4 additions & 3 deletions config/api_sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,10 @@
'timeout' => 10
],

'hooks' => [],

'filters' => [],
'hooks' => [
'actions' => [],
'filters' => [],
],

'feedback' => [
'token' => 'a-kind-of-unique-token',
Expand Down
12 changes: 7 additions & 5 deletions migrations/db/seeds/FieldsSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,13 @@ public function run()
'interface' => 'toggle',
'locked' => 1
],
[
'collection' => 'directus_fields',
'field' => 'validation',
'type' => \Directus\Database\Schema\DataTypes::TYPE_STRING,
'interface' => 'text-input',
'locked' => 1,
],
[
'collection' => 'directus_fields',
'field' => 'required',
Expand Down Expand Up @@ -968,7 +975,6 @@ public function run()
'listing_subdued' => false,
'listing_badge' => true,
'soft_delete' => false,
'published' => true
],
'invited' => [
'name' => 'Invited',
Expand All @@ -977,7 +983,6 @@ public function run()
'listing_subdued' => false,
'listing_badge' => true,
'soft_delete' => false,
'published' => false
],
'active' => [
'name' => 'Active',
Expand All @@ -986,7 +991,6 @@ public function run()
'listing_subdued' => false,
'listing_badge' => false,
'soft_delete' => false,
'published' => true
],
'suspended' => [
'name' => 'Suspended',
Expand All @@ -995,7 +999,6 @@ public function run()
'listing_subdued' => false,
'listing_badge' => true,
'soft_delete' => false,
'published' => false
],
'deleted' => [
'name' => 'Deleted',
Expand All @@ -1004,7 +1007,6 @@ public function run()
'listing_subdued' => false,
'listing_badge' => true,
'soft_delete' => true,
'published' => false
]
]
]),
Expand Down
3 changes: 0 additions & 3 deletions public/extensions/.gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion 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.js

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

8 changes: 4 additions & 4 deletions public/extensions/core/interfaces/code/input.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/extensions/core/interfaces/code/meta.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"name":"$t:code","version":"1.0.0","types":["string"],"icon":"code","options":{"language":{"name":"$t:language","comment":"$t:language_comment","interface":"dropdown","default":"application/json","options":{"choices":{"text/plain":"Plain Text","text/javascript":"JavaScript","application/json":"JSON","text/x-vue":"Vue","application/x-httpd-php":"PHP"}}},"template":{"name":"$t:template","comment":"$t:template_comment","interface":"code","options":{"language":"text/plain"}},"lineNumber":{"name":"$t:lineNumber","comment":"$t:lineNumber_comment","interface":"toggle","default":true}},"translation":{"en-US":{"code":"Code","template":"Template","template_comment":"Provide a template the user can use to get started with","language":"Language","language_comment":"Set the programming language to use","lineNumber":"Line Number","lineNumber_comment":"Show line numbers","loc":"No lines of {lang} | One line of {lang} | {count} lines of {lang}","fill_template":"Fill with Template"}}}
{"name":"$t:code","version":"1.0.0","types":["string"],"icon":"code","recommended":{"length":2000},"options":{"language":{"name":"$t:language","comment":"$t:language_comment","interface":"dropdown","default":"application/json","options":{"choices":{"text/plain":"Plain Text","text/javascript":"JavaScript","application/json":"JSON","text/x-vue":"Vue","application/x-httpd-php":"PHP"}}},"template":{"name":"$t:template","comment":"$t:template_comment","interface":"code","options":{"language":"text/plain"}},"lineNumber":{"name":"$t:lineNumber","comment":"$t:lineNumber_comment","interface":"toggle","default":true}},"translation":{"en-US":{"code":"Code","template":"Template","template_comment":"Provide a template the user can use to get started with","language":"Language","language_comment":"Set the programming language to use","lineNumber":"Line Number","lineNumber_comment":"Show line numbers","loc":"No lines of {lang} | One line of {lang} | {count} lines of {lang}","fill_template":"Fill with Template"}}}

Large diffs are not rendered by default.

Loading

0 comments on commit 1178d97

Please sign in to comment.