diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2021-08-20 19:59:08 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2021-09-09 14:03:35 +0200 |
commit | aacaad2a3f56893c6be463ec7a21c868322654ee (patch) | |
tree | 0e995c930501cae44ba49ff707ddc896c6048093 /core/templates | |
parent | 19cc757531959a14df40a79d550c82b39e4bc5a2 (diff) | |
download | nextcloud-server-aacaad2a3f56893c6be463ec7a21c868322654ee.tar.gz nextcloud-server-aacaad2a3f56893c6be463ec7a21c868322654ee.zip |
implement verification for additional mails
- mails added by (sub)admins are automatically verified
- provisioning_api controller as verification endpoint
- IAccountProperty gets a locallyVerified property
- IPropertyCollection gets a method to fetch an IAccountProperty by value
- an remove equivalent was already present
- AccountManager always initiates mail verification on update if necessary
- add core success template for arbitrary title and message
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/success.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/core/templates/success.php b/core/templates/success.php new file mode 100644 index 00000000000..5ce8ff4f045 --- /dev/null +++ b/core/templates/success.php @@ -0,0 +1,13 @@ +<?php +/** @var array $_ */ +/** @var \OCP\IL10N $l */ +/** @var \OCP\Defaults $theme */ +?> + +<div class="update"> + <h2><?php p($_['title']) ?></h2> + <p><?php p($_['message']) ?></p> + <p><a class="button primary" href="<?php p(\OC::$server->get(\OCP\IURLGenerator::class)->linkTo('', 'index.php')) ?>"> + <?php p($l->t('Go to %s', [$theme->getName()])); ?> + </a></p> +</div> |