1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-04 11:17:02 +02:00
unleash.unleash/frontend/src/openapi/models/projectLinkTemplateSchema.ts
Tymoteusz Czech fd4042db00
chore: update frontend OpenAPI models - (#9943)
project link templates
2025-05-09 13:05:22 +02:00

19 lines
442 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* A template for a link that can be automatically added to new feature flags.
*/
export interface ProjectLinkTemplateSchema {
/**
* The title of the link.
* @nullable
*/
title?: string | null;
/** The URL to use as a template. Can contain {{project}} or {{feature}} as placeholders. */
urlTemplate: string;
}