Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2021-02-26 01:44:50 +0300
committerdartcafe <github@dartcafe.de>2021-02-26 01:44:50 +0300
commit2602297ebd25bbdaca595d99daaa98b980596577 (patch)
tree7156c18c0ba1cd4f715cc3bb2f9b1da0659202e0 /src/js/views/Vote.vue
parent58f7d604d4ba86767f82134c54caf8d607280251 (diff)
Let public users change their email address
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/views/Vote.vue')
-rw-r--r--src/js/views/Vote.vue3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/js/views/Vote.vue b/src/js/views/Vote.vue
index 29ab48af..3ba2c949 100644
--- a/src/js/views/Vote.vue
+++ b/src/js/views/Vote.vue
@@ -84,6 +84,7 @@
</div>
<div class="area__footer">
+ <PublicEmail />
<Subscription v-if="acl.allowSubscribe" />
<ParticipantsList v-if="acl.allowSeeUsernames" />
</div>
@@ -108,6 +109,7 @@ import ParticipantsList from '../components/Base/ParticipantsList'
import PersonalLink from '../components/Base/PersonalLink'
import PollInformation from '../components/Base/PollInformation'
import PublicRegisterModal from '../components/Base/PublicRegisterModal'
+import PublicEmail from '../components/Base/PublicEmail'
import Subscription from '../components/Subscription/Subscription'
import VoteTable from '../components/VoteTable/VoteTable'
@@ -124,6 +126,7 @@ export default {
PersonalLink,
PollInformation,
PublicRegisterModal,
+ PublicEmail,
Subscription,
VoteTable,
},