aboutsummaryrefslogtreecommitdiff
path: root/controllers/auth
diff options
context:
space:
mode:
authorBobby <[email protected]>2026-03-08 18:17:23 +0530
committerBobby <[email protected]>2026-03-08 18:17:23 +0530
commit1136af49815be77a0aca151f3b8ec7348bf4b4c8 (patch)
treeca4d94f981be59c51fa7d160e32be978a8d4b4fb /controllers/auth
parentf48054e9bc5e4fb36b9aba9126c6ace9c5b1f470 (diff)
downloaddove-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 'controllers/auth')
-rw-r--r--controllers/auth/auth.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/controllers/auth/auth.go b/controllers/auth/auth.go
index 8140ddd..f700716 100644
--- a/controllers/auth/auth.go
+++ b/controllers/auth/auth.go
@@ -29,4 +29,4 @@ func Logout(context *fiber.Ctx) error {
}
return shortcuts.Redirect(context, "home")
-} \ No newline at end of file
+}