Skip to content

Commit

Permalink
feat(browsing-context): allow Forest-Context-Url header to give the…
Browse files Browse the repository at this point in the history
… current browser url of users (#665)

BREAKING CHANGE: users willing to use this header needs either to clean the allowed headers or to add this specific header in the CORS configuration
  • Loading branch information
SteveBunlon committed May 26, 2021
1 parent fb58717 commit c46fd66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/apimap-field-type-detector.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function ApimapFieldTypeDetector(column, options) {
|| column.type instanceof DataTypes.UUIDV1
|| column.type instanceof DataTypes.UUIDV4
|| (DataTypes.CITEXT && column.type instanceof DataTypes.CITEXT)
|| column.type === 'citext') { // TODO: Remove 'citext' once Sequelize 4 has been unsupported.
|| column.type === 'citext') { // TODO: Remove 'citext' once Sequelize 4 has been deprecated.
return 'String';
}
if (column.type instanceof DataTypes.ENUM) {
Expand Down

0 comments on commit c46fd66

Please sign in to comment.