mirror of
https://github.com/StarFleetCPTN/GoMFT.git
synced 2026-09-08 23:50:48 +02:00
- Updated notification service models to use pointers for boolean fields, allowing for better handling of enabled states. - Introduced helper methods for getting and setting enabled states in notification and auth provider models. - Refactored notification form templates to consolidate event trigger handling, improving code maintainability. - Added SSL verification configuration to the application settings, allowing users to skip SSL verification for outgoing notifications. - Enhanced the notification sending logic to respect the SSL verification setting. - Introduced new migration to alter boolean defaults in the database schema for better compatibility with the updated models. - Added unit tests for email and Rclone service functionalities to ensure reliability.
73 lines
827 B
Plaintext
73 lines
827 B
Plaintext
# Binaries for programs and plugins
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, build output
|
|
*.test
|
|
*.out
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.cov
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Build directories
|
|
_build/
|
|
build/
|
|
|
|
# Vendor directory
|
|
/vendor/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
go.work.sum
|
|
|
|
# IDE/editor specific files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*~
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Dependency directories
|
|
node_modules/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Ignore all Go files in the components directory
|
|
*_templ.go
|
|
|
|
# Ignore the data directory
|
|
data/
|
|
|
|
# Ignore .env files
|
|
.env
|
|
*.env
|
|
|
|
# Ignore the tmp directory
|
|
tmp/
|
|
|
|
# Ignore the configs directory
|
|
configs/
|
|
|
|
# Ignore the backups directory
|
|
backups/
|
|
|
|
# Ignore Dirs
|
|
/source/
|
|
/destination/
|
|
/archive/
|
|
|
|
# Ignore the dist directory
|
|
static/dist/
|
|
|
|
# Ignore binaries
|
|
gomft |