parent
d6118c8bc8
commit
48c1238492
|
@ -453,7 +453,7 @@ class PostAlerter
|
||||||
if SiteSetting.allow_user_api_key_scopes.split("|").include?("push") && SiteSetting.allowed_user_api_push_urls.present?
|
if SiteSetting.allow_user_api_key_scopes.split("|").include?("push") && SiteSetting.allowed_user_api_push_urls.present?
|
||||||
clients = user.user_api_keys
|
clients = user.user_api_keys
|
||||||
.where("('push' = ANY(scopes) OR 'notifications' = ANY(scopes))")
|
.where("('push' = ANY(scopes) OR 'notifications' = ANY(scopes))")
|
||||||
.where("push_url IS NOT NULL")
|
.where("push_url IS NOT NULL AND push_url <> ''")
|
||||||
.where("position(push_url IN ?) > 0", SiteSetting.allowed_user_api_push_urls)
|
.where("position(push_url IN ?) > 0", SiteSetting.allowed_user_api_push_urls)
|
||||||
.where("revoked_at IS NULL")
|
.where("revoked_at IS NULL")
|
||||||
.pluck(:client_id, :push_url)
|
.pluck(:client_id, :push_url)
|
||||||
|
|
Loading…
Reference in New Issue