mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-02-02 14:16:58 +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(
|
@Deprecated(
|
||||||
'Extend GenericMutationResult for mutations, return data for queries')
|
'Extend GenericMutationResult for mutations, return data for queries',
|
||||||
|
)
|
||||||
class ApiResponse<D> {
|
class ApiResponse<D> {
|
||||||
ApiResponse({
|
ApiResponse({
|
||||||
required this.success,
|
required this.success,
|
||||||
|
@ -266,6 +267,9 @@ class ServerApi extends ApiMap
|
||||||
return key;
|
return key;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Deprecated(
|
||||||
|
'Server now aware of all required DNS records. More general approach has to be implemented',
|
||||||
|
)
|
||||||
Future<String?> getDkim() async {
|
Future<String?> getDkim() async {
|
||||||
String? dkim;
|
String? dkim;
|
||||||
QueryResult<Query$DomainInfo> response;
|
QueryResult<Query$DomainInfo> response;
|
||||||
|
|
Loading…
Reference in a new issue