Files
GoMFT/.gitignore
T
StarFleetCPTN 608da9ce1c feat: Enhance notification service configuration and refactor related components
- 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.
2025-03-30 09:56:55 -07:00

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