FEATURE: Add API key scopes for tag_groups (#23634)

This commit is contained in:
KThompson-Lane-Unity 2023-10-03 09:20:17 +01:00 committed by GitHub
parent e3d3e34e57
commit 607f700c8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 0 deletions

View File

@ -70,6 +70,22 @@ class ApiKeyScope < ActiveRecord::Base
actions: %w[tags#index],
},
},
tag_groups: {
list: {
actions: %w[tag_groups#index],
},
show: {
actions: %w[tag_groups#show],
params: %i[id],
},
create: {
actions: %w[tag_groups#create],
},
update: {
actions: %w[tag_groups#update],
params: %i[id],
},
},
categories: {
list: {
actions: %w[categories#index],

View File

@ -4856,6 +4856,11 @@ en:
list: List latest posts and private posts. RSS is also supported.
tags:
list: List tags.
tag_groups:
list: Get a list of tag groups.
show: Get a single tag group by id.
create: Creates a tag group.
update: Updates a tag group specified by id.
categories:
list: Get a list of categories.
show: Get a single category by id.

View File

@ -430,6 +430,7 @@ RSpec.describe Admin::ApiController do
"email",
"posts",
"tags",
"tag_groups",
"uploads",
"user_status",
"global",