mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-23 09:16:54 +00:00
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.
This commit is contained in:
parent
1845bea361
commit
88bcdcff39
|
@ -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<D> {
|
||||
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<String?> getDkim() async {
|
||||
String? dkim;
|
||||
QueryResult<Query$DomainInfo> response;
|
||||
|
|
Loading…
Reference in a new issue