diff options
author | Ekaterina Vaartis <vaartis@kotobank.ch> | 2023-03-29 23:18:44 +0300 |
---|---|---|
committer | Ekaterina Vaartis <vaartis@kotobank.ch> | 2023-03-29 23:23:06 +0300 |
commit | d3b27d45a9115c04d4e469d1a9dc372ff8576d52 (patch) | |
tree | d2714ef5a829e1b2e25dd598057bf5744c04c832 /lib/pleroma/web/api_spec/operations/admin | |
parent | 4f7c11b2814f22fd7f28832462569a78faf223b5 (diff) | |
download | pleroma-d3b27d45a9115c04d4e469d1a9dc372ff8576d52.tar.gz pleroma-d3b27d45a9115c04d4e469d1a9dc372ff8576d52.zip |
List installed frontend refs in admin API
Diffstat (limited to 'lib/pleroma/web/api_spec/operations/admin')
-rw-r--r-- | lib/pleroma/web/api_spec/operations/admin/frontend_operation.ex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pleroma/web/api_spec/operations/admin/frontend_operation.ex b/lib/pleroma/web/api_spec/operations/admin/frontend_operation.ex index 4bfe5ac5a..89b1c474c 100644 --- a/lib/pleroma/web/api_spec/operations/admin/frontend_operation.ex +++ b/lib/pleroma/web/api_spec/operations/admin/frontend_operation.ex @@ -52,7 +52,8 @@ defmodule Pleroma.Web.ApiSpec.Admin.FrontendOperation do git: %Schema{type: :string, format: :uri, nullable: true}, build_url: %Schema{type: :string, format: :uri, nullable: true}, ref: %Schema{type: :string}, - installed: %Schema{type: :boolean} + installed: %Schema{type: :boolean}, + installed_refs: %Schema{type: :array, items: %Schema{type: :string}} } } } |