Skip to content

Commit

Permalink
Fix missing comma and (hopefully) appease rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
digitaldogsbody committed Jan 19, 2023
1 parent 785bef8 commit f64c6c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/models/doi.rb
Original file line number Diff line number Diff line change
Expand Up @@ -301,15 +301,15 @@ class Doi < ApplicationRecord
funderName: { type: :keyword },
funderIdentifier: { type: :keyword, normalizer: "keyword_lowercase" },
funderIdentifierType: { type: :keyword },
schemeUri: {type: :keyword}
schemeUri: { type: :keyword },
awardNumber: { type: :keyword },
awardUri: { type: :keyword },
awardTitle: { type: :keyword },
}
indexes :dates, type: :object, properties: {
date: { type: :text },
dateType: { type: :keyword },
dateInformation: {type: :keyword},
dateInformation: { type: :keyword },
}
indexes :geo_locations, type: :object, properties: {
geoLocationPoint: { type: :object },
Expand Down

0 comments on commit f64c6c1

Please sign in to comment.