1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-07 01:16:28 +02:00
unleash.unleash/frontend/src/openapi/models/featureSchemaCreatedBy.ts
Tymoteusz Czech 582b33e121
Feat: feature view created by field - frontend (#7382)
add "Created by:" to feature overview meta and align other items
2024-06-13 13:00:57 +02:00

18 lines
337 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* User who created the feature flag
*/
export type FeatureSchemaCreatedBy = {
/** The user id */
id: number;
/** URL used for the user profile image */
imageUrl: string;
/** Name of the user */
name: string;
};