From 88bcdcff39328ba9b1a2a5804172d8e28c6a5b1b Mon Sep 17 00:00:00 2001 From: inexcode Date: Wed, 26 Oct 2022 20:24:00 +0300 Subject: [PATCH] chore(server-api): Deprecate getDkim Server API now aware of all required DNS records. More general approach to handle DNS records is required in the future. --- lib/logic/api_maps/graphql_maps/server_api/server.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/logic/api_maps/graphql_maps/server_api/server.dart b/lib/logic/api_maps/graphql_maps/server_api/server.dart index 842d278a..31ee89fe 100644 --- a/lib/logic/api_maps/graphql_maps/server_api/server.dart +++ b/lib/logic/api_maps/graphql_maps/server_api/server.dart @@ -48,7 +48,8 @@ class GenericJobMutationReturn extends GenericMutationResult { } @Deprecated( - 'Extend GenericMutationResult for mutations, return data for queries') + 'Extend GenericMutationResult for mutations, return data for queries', +) class ApiResponse { ApiResponse({ required this.success, @@ -266,6 +267,9 @@ class ServerApi extends ApiMap return key; } + @Deprecated( + 'Server now aware of all required DNS records. More general approach has to be implemented', + ) Future getDkim() async { String? dkim; QueryResult response;