Skip to content

Commit

Permalink
fix: fix token indexes and clnId type (#3434)
Browse files Browse the repository at this point in the history
* fix: user attributes not updated #2753

* fix: fix clnId type definition and token indexes
  • Loading branch information
yurem authored Dec 28, 2022
1 parent 62f858c commit 4a18904
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 26 deletions.
2 changes: 1 addition & 1 deletion jans-linux-setup/jans_setup/schema/jans_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@
"names": [
"clnId"
],
"multivalued": true,
"multivalued": false,
"oid": "jansAttr",
"substr": "caseIgnoreSubstringsMatch",
"syntax": "1.3.6.1.4.1.1466.115.121.1.15",
Expand Down
18 changes: 6 additions & 12 deletions jans-linux-setup/jans_setup/static/rdbm/mysql_index.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,12 @@
]
},
"jansToken": {
"fields": [],
"fields": [
"authzCode",
"grtId",
"ssnId",
"tknCde"
],
"custom": [
"`del`, `exp`"
]
Expand Down Expand Up @@ -139,17 +144,6 @@
],
"custom": []
},
"token": {
"fields": [
"authzCode",
"grtId",
"ssnId",
"tknCde"
],
"custom": [
"`del`, `exp`"
]
},
"cache": {
"fields": [],
"custom": [
Expand Down
18 changes: 6 additions & 12 deletions jans-linux-setup/jans_setup/static/rdbm/pgsql_index.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,12 @@
]
},
"jansToken": {
"fields": [],
"fields": [
"authzCode",
"grtId",
"ssnId",
"tknCde"
],
"custom": [
"(\"del\", \"exp\")"
]
Expand Down Expand Up @@ -139,17 +144,6 @@
],
"custom": []
},
"token": {
"fields": [
"authzCode",
"grtId",
"ssnId",
"tknCde"
],
"custom": [
"(\"del\", \"exp\")"
]
},
"cache": {
"fields": [],
"custom": [
Expand Down
2 changes: 1 addition & 1 deletion jans-linux-setup/jans_setup/static/rdbm/spanner_index.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"`del`, `exp`"
]
},
"token": {
"jansToken": {
"fields": [
"authzCode",
"grtId",
Expand Down

0 comments on commit 4a18904

Please sign in to comment.