mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
Create and managed simple API tokens for access to the API from external tools.
9 lines
236 B
TypeScript
9 lines
236 B
TypeScript
import { ApiProperty } from "@nestjs/swagger";
|
|
|
|
export class CreateApiTokenRequestDto {
|
|
@ApiProperty({
|
|
description: "Opaque text field to identify the API token",
|
|
example: "My super duper token",
|
|
})
|
|
description: string;
|
|
}
|