mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user