mirror of
https://github.com/directus/directus.git
synced 2026-02-16 10:15:14 -05:00
26 lines
694 B
YAML
26 lines
694 B
YAML
patch:
|
|
description:
|
|
Updates the last used page field of the user. This is used internally
|
|
to be able to open the Directus admin app from the last page you used.
|
|
operationId: updateLastUsedPage
|
|
parameters:
|
|
- $ref: "#/components/parameters/UUId"
|
|
requestBody:
|
|
content:
|
|
application/json:
|
|
schema:
|
|
properties:
|
|
last_page:
|
|
description: Path of the page you used last.
|
|
type: string
|
|
type: object
|
|
responses:
|
|
"200":
|
|
description: Successful request
|
|
"401":
|
|
$ref: "#/components/responses/UnauthorizedError"
|
|
"404":
|
|
$ref: "#/components/responses/NotFoundError"
|
|
tags:
|
|
- Users
|