Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
.env
.cursor
.github
sonar-project.properties
.scannerwork
# Logs
logs
*.log
Expand Down
1 change: 1 addition & 0 deletions manifest/backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ spec:
labels:
app: backend
spec:
automountServiceAccountToken: false
containers:
- image: ${ECR_REPOSITORY}:${IMAGE_TAG}
imagePullPolicy: 'Always'
Expand Down
1 change: 1 addition & 0 deletions src/common/utils/custom-field-validation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export class CustomFieldsValidation {
if (!regex.test(fieldValue)) {
result = false;
}
break;

default:
break;
Expand Down