( template: "bb.plan.change-database", databaseNameList?: string[] )
| 92 | |
| 93 | /** Generates a title for database change plan issues. */ |
| 94 | export const generatePlanTitle = ( |
| 95 | template: "bb.plan.change-database", |
| 96 | databaseNameList?: string[] |
| 97 | ): string => { |
| 98 | return formatIssueTitle( |
| 99 | i18n.t("issue.title.change-database"), |
| 100 | databaseNameList |
| 101 | ); |
| 102 | }; |
| 103 | |
| 104 | /** |
| 105 | * Gets the route name and params for an issue. |
no test coverage detected