Skip to content

Commit

Permalink
Merge pull request #14 from openstandia/dev
Browse files Browse the repository at this point in the history
fix: changed “logins_count” attribute type from long to int
  • Loading branch information
wadahiro authored Sep 30, 2024
2 parents 9fcc1d9 + c09fa2a commit 1183adb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public static ObjectClassInfo getSchema(Auth0Configuration config, String databa
.setUpdateable(false)
.build());
builder.addAttributeInfo(AttributeInfoBuilder.define(ATTR_LOGINS_COUNT)
.setType(Long.class)
.setType(Integer.class)
.setCreateable(false)
.setUpdateable(false)
.build());
Expand Down

0 comments on commit 1183adb

Please sign in to comment.