Constructs an instance of this controller.
Handler of the /assets
endpoint. Returns all assets that match
the request query. If the query is null or not specified, returns
all documents in DTO format using AssetDTO.
The result of this endpoint can be paginated using query
parameters: pageSize
, pageNumber
. Also, it can be sorted
with query parameters: sort
, order
.
Requests a user's assets
entries. This endpoint is protected and a
valid access token must be attached in the Authorization
request
header, in signed cookies or in browser cookies.
The request is secured using the AuthGuard guard
which attaches a payload
to the request object.
An express
request used to extract the authenticated user payload.
An authenticated user's owned assets.
Generated using TypeDoc
DISCOVERY
The assets controller of the app. Handles requests about assets that are available in the database.
This controller defines the following routes:
/assets
GET
/assets/:address
GET
v0.3.0