mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06:00
FEATURE: Extend the topics:read API scope to allow read by external_id (#22536)
Allow an API key created with `topics:read` API scope to get a topic by `external_id`
This commit is contained in:
parent
d7ef7b9c03
commit
56e792df9b
@ -35,8 +35,8 @@ class ApiKeyScope < ActiveRecord::Base
|
||||
actions: %w[topics#destroy],
|
||||
},
|
||||
read: {
|
||||
actions: %w[topics#show topics#feed topics#posts],
|
||||
params: %i[topic_id],
|
||||
actions: %w[topics#show topics#feed topics#posts topics#show_by_external_id],
|
||||
params: %i[topic_id external_id],
|
||||
aliases: {
|
||||
topic_id: :id,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user