Make it possible to define control buttons text (Back, Create, Review) per template

Signed-off-by: Bogdan Nechyporenko <bnechyporenko@bol.com>
This commit is contained in:
Bogdan Nechyporenko
2023-10-16 14:18:37 +02:00
parent 2ae383d372
commit b5dcf6b120
3 changed files with 21 additions and 10 deletions
@@ -71,8 +71,11 @@ export interface TemplateEntityV1beta3 extends Entity {
}
export interface TemplateConfigurationsV1beta3 {
kickOffButtonText?: string;
reviewButtonText?: string;
buttonLabels?: {
backButtonText?: string;
createButtonText?: string;
reviewButtonText?: string;
};
}
/**