mirror of
https://github.com/apache/superset.git
synced 2026-05-08 17:35:33 +00:00
docs: cut 6.1.0 versions for docs, admin_docs, developer_docs, components
- Snapshot all four versioned docs sections at v6.1.0; master continues to serve as "Next" (lastVersion: current, banner: unreleased) so editing master keeps updating the canonical URLs - Enable the previously-disabled components plugin and version it - Rename stale "developer_portal" references to "developer_docs" across package.json scripts, manage-versions.mjs, theme files (DocVersionBadge, DocVersionBanner), DOCS_CLAUDE.md, and README.md (URL backward-compat redirect /developer_portal/* preserved) - Add admin_docs version scripts; drop dead "tutorials" plugin id from the version badge - Generalize fixVersionedImports in manage-versions.mjs to walk every section's snapshot and rewrite ../../src/ and ../../data/ imports, catching admin_docs and components files that previous version cuts would have broken - Remove orphan files: developer_portal_versions.json, tutorials_versions.json, and stray empty versions.json files inside components/ and developer_docs/ content directories
This commit is contained in:
@@ -0,0 +1,60 @@
|
||||
---
|
||||
id: get-menu
|
||||
title: "Get menu"
|
||||
description: "Get the menu data structure. Returns a forest like structure with the menu the user has access to"
|
||||
sidebar_label: "Get menu"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
api: eJy9Vl1P5DYU/SvWVR9ADQxUfUBZ7QNFlGVLu4gZ1EpkNGsyl4khsbP2zcA0yn+vrp1kMh9dbVupT3Gc6+Nz7mdqmKNLrSpJGQ0xXCEJylAUqCsxlySFI1ulVFk8FndIldVOSPFkLDoSuXrBtYF4VZStT/OicmhFJp2QaYrOCTIQgUVXGu3QQVzDDycn/EiNJtTES1mWuUolExo9O2ZVg0szLCSvSmtKtKTCaYuuyv2pTRm/MgFFWDih9BbfTVUQgbfbxU4zlc/9qjegVYkQg3l8xpSgiboNaa1c8btKA99NNtep0ULLAgUZ4TLzynwEZcoFTzE+9GCOrNILRsvlI+a7cLcWiVYBMADh13HYchdmkqFQmtBqma/Pe9hIFLLkaIkSbaGcU0bPPMoe9Mru4cjg93c338Jv7ca/8+s+C3yTRZnjMAke1jF7mHax6K7pvbneCG5Zv3shPa1pw/fuVkdfGczix5PT/5C9BTonFzjIrK/5ZKC4Pwj3WlaUGav+xHkszivKUFN7v7D4pVIW57BHyvCgv89hWllFK+/H51f257SZRkBywQ71JQXTCFiAh7+eQwwLpBl7BCJ4O0rNHMeepPMoudQLiCG9v7sZ+L99daayKUtIK5uLoz/E1eVEJJARlfFolJtU5plxFJ+dnJ2NZKlGy9MR3zRKQCRJooU4+iASOG9VeEqx+AmlRSu+O7+4uByPZ5NPv1z+lgA0Uc/mdkWZ0QM+/UbPSBWlseTdh45cohPd9Szxvt8+XiAdMA/xjbSjYJyhnKN17+st8gnEIoFWQALi+7Zpzsi8oG4SfZjo0ipNBx2ZY06wg8PDobyPcinHPs4DiRuba8cb7Vhlr0y+SkXiCSnNvLB/IKve0BZ372I7QizycxekOgiceH2fw4mGHyz2XaIDQd+vO3Jb0lsjk+NxbhYHbHr4DjhtC6TMtBkKEZSSMohhgzr7Au0SbcjWUP57FcN29dzwZzHHJeamLFCTCEg+EgGoLq0hk5q8iUejmqGauOa8anbQLipHpuggIlhKq+Rjjt1Q8jChxz5J3+o8TYgAdVVwcbav/HBcpJv4HyaTW9HjNBEwm028Xu8OubFnJfibnzjGiutbBmEtmyB7XdWe99ZNw6HpOs2Y22IQ6ftNDY8+MX42tpCM9/H3CcfIm0Hcfl0PEC+6ifjwzOKTRZf9WxAe3frJ7M6xcVWidT6FSBF33+EW506wW54GlzgqpO/57XDpJsa2WwYz43/552rVEr7RqMyl0oPJHWrjAWSpWNMpcPV4ypxKIVceoK4fpcN7mzcNb3+p0K7CoO3S1U+MCEIP8CX1giuI4TxN0XeepcwrP9a3Z+RGwV5dcsB4Og0GYx+2dsHo3U+CXg2w6zpYhKbCtRZI+CYapvpf3ZbBJg==
|
||||
sidebar_class_name: "get api-method"
|
||||
info_path: developer-docs/api/superset
|
||||
custom_edit_url: null
|
||||
hide_send_button: true
|
||||
show_extensions: true
|
||||
---
|
||||
|
||||
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
|
||||
import ParamsDetails from "@theme/ParamsDetails";
|
||||
import RequestSchema from "@theme/RequestSchema";
|
||||
import StatusCodes from "@theme/StatusCodes";
|
||||
import OperationTabs from "@theme/OperationTabs";
|
||||
import TabItem from "@theme/TabItem";
|
||||
import Heading from "@theme/Heading";
|
||||
import Translate from "@docusaurus/Translate";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"Get menu"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
<MethodEndpoint
|
||||
method={"get"}
|
||||
path={"/api/v1/menu/"}
|
||||
context={"endpoint"}
|
||||
>
|
||||
|
||||
</MethodEndpoint>
|
||||
|
||||
|
||||
|
||||
Get the menu data structure. Returns a forest like structure with the menu the user has access to
|
||||
|
||||
<ParamsDetails
|
||||
parameters={undefined}
|
||||
>
|
||||
|
||||
</ParamsDetails>
|
||||
|
||||
<RequestSchema
|
||||
{...require("./get-menu.RequestSchema.json")}
|
||||
>
|
||||
|
||||
</RequestSchema>
|
||||
|
||||
<StatusCodes
|
||||
{...require("./get-menu.StatusCodes.json")}
|
||||
>
|
||||
|
||||
</StatusCodes>
|
||||
Reference in New Issue
Block a user