tethys.backend/contracts/validator.ts
Arno Kaimbacher 080c21126b - add validator for checking languages of translated titles and description
- add notification messages via notiwind.ts
- add Project.ts
- add new component TabelPersons.vue
- add additional routes
- npm updates
2023-03-24 11:41:52 +01:00

9 lines
179 B
TypeScript

declare module '@ioc:Adonis/Core/Validator' {
interface Rules {
translatedLanguage(
mainLanguageField: string,
typeField: string
): Rule
}
}