feat: add add new config strategy to frontend

This commit is contained in:
Elias Schneider
2022-11-28 17:50:36 +01:00
parent 1b5e53ff7e
commit 493705e4ef
20 changed files with 183 additions and 102 deletions

View File

@@ -0,0 +1,8 @@
import { IsNotEmpty } from "class-validator";
class UpdateConfigDTO {
@IsNotEmpty()
value: string | number | boolean;
}
export default UpdateConfigDTO;