fortifier 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/models/fortifier/auth_user.rb +1 -1
- data/lib/fortifier/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d30eeb99b0b1213c68918b193b5b91259d956b97
|
4
|
+
data.tar.gz: 8f0d4e3b7a3446b5019da07a79242b12e0fee5b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73aaa91c7f54242d385e0616f1d230d27284f822e1c2206699ea15b7790498a6566e6d9446f9ebe20be820aed1724932c1dc9b71d76ef084779ffa2cc8e96c41
|
7
|
+
data.tar.gz: ddcb67cb26ae7007b574f581b096637d3ce3fab2408008793c49637cdee4c5272c464c8a4ac87d7d301b3ac61fe541b11787345879d47aa1f2044fc5333a325d
|
@@ -195,7 +195,7 @@ module Fortifier
|
|
195
195
|
# aggregate_query is conditional b/c account_uuid isn't always provided (such as the Users page for providigm users in abaqis)
|
196
196
|
app_uuids_query = "app_uuids_csv = '#{app_uuid}'"
|
197
197
|
account_uuids_query = account_uuid ? " AND account_uuids_csv = '#{account_uuid}'" : ""
|
198
|
-
search_keywords_query = search_keywords ? " AND
|
198
|
+
search_keywords_query = search_keywords ? " AND FIND_IN_SET ('#{search_keywords}', search_keywords_csv)" : ''
|
199
199
|
aggregate_query = app_uuids_query + account_uuids_query + search_keywords_query
|
200
200
|
|
201
201
|
# b/c there's no 'enabled' field on auth user and abaqis allows this sorting (providigm/users in abaqis)
|
data/lib/fortifier/version.rb
CHANGED