Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
6fa6db7b
Unverified
Commit
6fa6db7b
authored
1 year ago
by
Jeff Bruemmer
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
docs - account for case when ordering endpoint links (#37588)
parent
3fcbe808
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
docs/api-documentation.md
+3
-3
3 additions, 3 deletions
docs/api-documentation.md
docs/api/dashboard.md
+14
-0
14 additions, 0 deletions
docs/api/dashboard.md
src/metabase/cmd/endpoint_dox.clj
+3
-1
3 additions, 1 deletion
src/metabase/cmd/endpoint_dox.clj
with
20 additions
and
4 deletions
docs/api-documentation.md
+
3
−
3
View file @
6fa6db7b
...
...
@@ -24,13 +24,13 @@ Check out an introduction to the [Metabase API](https://www.metabase.com/learn/a
_* indicates endpoints used for features available on [paid plans](https://www.metabase.com/pricing)._
-
[
API key
](
api/api-key.md
)
-
[
Action
](
api/action.md
)
-
[
Activity
](
api/activity.md
)
-
[
Advanced config logs*
](
api/ee/advanced-config-logs.md
)
-
[
Advanced permissions application*
](
api/ee/advanced-permissions-application.md
)
-
[
Advanced permissions impersonation*
](
api/ee/advanced-permissions-impersonation.md
)
-
[
Alert
](
api/alert.md
)
-
[
API key
](
api/api-key.md
)
-
[
Audit app user*
](
api/ee/audit-app-user.md
)
-
[
Automagic dashboards
](
api/automagic-dashboards.md
)
-
[
Bookmark
](
api/bookmark.md
)
...
...
@@ -59,8 +59,6 @@ _* indicates endpoints used for features available on [paid plans](https://www.m
-
[
Public
](
api/public.md
)
-
[
Pulse
](
api/pulse.md
)
-
[
Revision
](
api/revision.md
)
-
[
SSO*
](
api/ee/sso.md
)
-
[
SSO SAML
](
api/sso-saml.md
)
-
[
Sandbox GTAP*
](
api/ee/sandbox-gtap.md
)
-
[
Sandbox table*
](
api/ee/sandbox-table.md
)
-
[
Sandbox user*
](
api/ee/sandbox-user.md
)
...
...
@@ -70,6 +68,8 @@ _* indicates endpoints used for features available on [paid plans](https://www.m
-
[
Setting
](
api/setting.md
)
-
[
Setup
](
api/setup.md
)
-
[
Slack
](
api/slack.md
)
-
[
SSO*
](
api/ee/sso.md
)
-
[
SSO SAML
](
api/sso-saml.md
)
-
[
Table
](
api/table.md
)
-
[
Task
](
api/task.md
)
-
[
Tiles
](
api/tiles.md
)
...
...
This diff is collapsed.
Click to expand it.
docs/api/dashboard.md
+
14
−
0
View file @
6fa6db7b
...
...
@@ -26,6 +26,20 @@ Delete a Dashboard.
*
**`id`**
value must be an integer greater than zero.
## `GET /api/dashboard/`
This endpoint is currently unused by the Metabase frontend and may be out of date with the rest of the application.
It only exists for backwards compatibility and may be removed in the future.
Get
`Dashboards`
. With filter option
`f`
(default
`all`
), restrict results as follows:
*
`all`
- Return all Dashboards.
*
`mine`
- Return Dashboards created by the current user.
*
`archived`
- Return Dashboards that have been archived. (By default, these are
*excluded*
.).
### PARAMS:
*
**`f`**
nullable enum of all, mine, archived
## `GET /api/dashboard/:dashboard-id/dashcard/:dashcard-id/execute`
Fetches the values for filling in execution parameters. Pass PK parameters and values to select.
...
...
This diff is collapsed.
Click to expand it.
src/metabase/cmd/endpoint_dox.clj
+
3
−
1
View file @
6fa6db7b
...
...
@@ -197,7 +197,9 @@
(
->>
(
collect-endpoints
)
(
map
process-endpoint
)
(
group-by
:ns-name
)
(
into
(
sorted-map
))))
(
into
(
sorted-map-by
(
fn
[
a
b
]
(
compare
(
u/lower-case-en
a
)
(
u/lower-case-en
b
)))))))
;;;; Page generators
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment