Skip to content

Links as Attachments + Tags #44

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Mar 26, 2020
2 changes: 1 addition & 1 deletion config/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module.exports = {
esConfig: {
HOST: process.env.ES_HOST || 'localhost:9200',
AWS_REGION: process.env.AWS_REGION || 'us-east-1', // AWS Region to be used if we use AWS ES
API_VERSION: process.env.ES_API_VERSION || '6.7',
API_VERSION: process.env.ES_API_VERSION || '6.8',
ES_PROJECT_INDEX: process.env.ES_PROJECT_INDEX || 'projects',
ES_TIMELINE_INDEX: process.env.ES_TIMELINE_INDEX || 'timelines',
ES_METADATA_INDEX: process.env.ES_METADATA_INDEX || 'metadata',
Expand Down
8 changes: 7 additions & 1 deletion migrations/elasticsearch_sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,13 @@ function getRequestBody (indexName) {
description: {
type: 'string'
},
filePath: {
path: {
type: 'string'
},
type: {
type: 'string'
},
tags: {
type: 'string'
},
id: {
Expand Down
Loading