1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-09-18 21:38:48 +00:00

Add links to privacy policy and terms of use of the terms

This commit is contained in:
2021-04-17 09:09:03 +02:00
parent c2ce5ca05f
commit 95a38e9e8d
3 changed files with 14 additions and 0 deletions

View File

@@ -135,6 +135,7 @@ class AccountInformationPolicy {
class ServerConfig {
final Version minSupportedMobileVersion;
final String termsURL;
final String privacyPolicyURL;
final String playStoreURL;
final String androidDirectDownloadURL;
final NotificationsPolicy notificationsPolicy;
@@ -146,6 +147,7 @@ class ServerConfig {
const ServerConfig({
@required this.minSupportedMobileVersion,
@required this.termsURL,
@required this.privacyPolicyURL,
@required this.playStoreURL,
@required this.androidDirectDownloadURL,
@required this.notificationsPolicy,
@@ -155,6 +157,7 @@ class ServerConfig {
@required this.accountInformationPolicy,
}) : assert(minSupportedMobileVersion != null),
assert(termsURL != null),
assert(privacyPolicyURL != null),
assert(playStoreURL != null),
assert(androidDirectDownloadURL != null),
assert(notificationsPolicy != null),