mirror of
https://github.com/dathere/ckanaction.git
synced 2026-07-05 17:12:19 +00:00
28 lines
No EOL
787 B
Text
28 lines
No EOL
787 B
Text
---
|
|
title: group_package_show
|
|
full: true
|
|
_openapi:
|
|
preload:
|
|
- ./lib/openapi.yml
|
|
method: POST
|
|
webhook: false
|
|
toc: []
|
|
structuredData:
|
|
headings: []
|
|
contents:
|
|
- content: Return the datasets (packages) of a group.
|
|
---
|
|
|
|
{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}
|
|
|
|
export default function Layout(props) {
|
|
const { APIPage, OpenAPIPage } = props.components ?? {};
|
|
// "APIPage" is the old name from v10, this allows both for backward compatibility
|
|
const Comp = OpenAPIPage ?? APIPage;
|
|
return (
|
|
<>
|
|
{props.children}
|
|
<Comp document="./lib/openapi.yml" operations={[{"path":"group_package_show","method":"post"}]} showDescription />
|
|
</>
|
|
);
|
|
} |