add feature to set user defined expiration on every user close #4

This commit is contained in:
Adrian Zürcher
2025-11-08 12:09:56 +01:00
parent db96732a62
commit 06afdf4349
13 changed files with 110 additions and 30 deletions

View File

@@ -18,7 +18,15 @@
<q-btn class="q-ma-md" color="primary" no-caps @click="addAttendees">{{ localTitle }}</q-btn>
</div>
</DialogFrame>
<EditAllDialog ref="newEventRef" v-on:update="(val) => resolveNewEvent(val)"></EditAllDialog>
<EditAllDialog
ref="newEventRef"
v-on:update="
(val) => {
resolveNewEvent(val);
NotifyResponse($t('memberUpdated'));
}
"
></EditAllDialog>
</template>
<script setup lang="ts">