diff options
| author | Bobby <[email protected]> | 2026-03-08 18:17:23 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2026-03-08 18:17:23 +0530 |
| commit | 1136af49815be77a0aca151f3b8ec7348bf4b4c8 (patch) | |
| tree | ca4d94f981be59c51fa7d160e32be978a8d4b4fb /tags | |
| parent | f48054e9bc5e4fb36b9aba9126c6ace9c5b1f470 (diff) | |
| download | dove-1136af49815be77a0aca151f3b8ec7348bf4b4c8.tar.xz dove-1136af49815be77a0aca151f3b8ec7348bf4b4c8.zip | |
feat(dns): add update functionality for DNS records (MX, SRV, TXT)
- Implemented UpdateMXRecord, UpdateSRVRecord, and UpdateTXTRecord functions in their respective repositories.
- Added UpdateRecord method in dns service to handle updates for various DNS record types.
- Updated router to include a new route for updating DNS records.
- Enhanced error messages for record updates in messages.go.
- Modified the frontend forms to support editing DNS records with improved UI components.
- Refactored existing domain management code to remove unused update functionality.
- Improved email handling by adding MX record validation during email delivery.
Diffstat (limited to 'tags')
| -rw-r--r-- | tags/defaults.go | 2 | ||||
| -rw-r--r-- | tags/messages.go | 2 | ||||
| -rw-r--r-- | tags/tags.go | 2 | ||||
| -rw-r--r-- | tags/url.go | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/tags/defaults.go b/tags/defaults.go index 4a87ff9..4f6eb44 100644 --- a/tags/defaults.go +++ b/tags/defaults.go @@ -2,4 +2,4 @@ package tags const ( LogPrefix = "Tags" -)
\ No newline at end of file +) diff --git a/tags/messages.go b/tags/messages.go index 99be613..cb5cd12 100644 --- a/tags/messages.go +++ b/tags/messages.go @@ -8,4 +8,4 @@ const ( RegistrationFailed = "Failed to register tag: %s." RouteNotFound = "Route not found: %s." TemplateWriteFailed = "Failed to write template output." -)
\ No newline at end of file +) diff --git a/tags/tags.go b/tags/tags.go index 4854ea2..aa8a79b 100644 --- a/tags/tags.go +++ b/tags/tags.go @@ -21,4 +21,4 @@ func Initialize() { logger.Errorf(LogPrefix, RegistrationFailed, tag.Name) } } -}
\ No newline at end of file +} diff --git a/tags/url.go b/tags/url.go index a087ab7..2956876 100644 --- a/tags/url.go +++ b/tags/url.go @@ -95,4 +95,4 @@ func (self *UrlNode) Execute(executionContext *pongo2.ExecutionContext, writer p } return nil -}
\ No newline at end of file +} |
