Fix /api/pleroma/emoji/packs index endpoint.

This commit is contained in:
KokaKiwi 2020-07-18 12:55:04 +02:00
parent 10d46235cf
commit 7ce722ce3e
No known key found for this signature in database
GPG Key ID: 09A5A2688F13FAC1
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ defmodule Pleroma.Web.PleromaAPI.EmojiPackController do
)
@skip_plugs [Pleroma.Plugs.OAuthScopesPlug, Pleroma.Plugs.ExpectPublicOrAuthenticatedCheckPlug]
plug(:skip_plug, @skip_plugs when action in [:archive, :show, :list])
plug(:skip_plug, @skip_plugs when action in [:index, :show, :archive])
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.PleromaEmojiPackOperation