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

Settings.vue « views « js - github.com/nextcloud/twofactor_gateway.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3f08a703c913210e774555ddab21c3a3da2d13f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<template>
	<div class="section">
		<h2 data-anchor-name="sms-second-factor-auth">
			<L10n text="Message gateway second-factor auth"/>
		</h2>
		<L10n text="Here you can configure the message gateway to receive two-factor authentication codes via Signal, SMS or Telegram." />
		<GatewaySettings gateway-name="signal" display-name="Signal">
			<SignalInstructions slot="instructions" />
		</GatewaySettings>
		<GatewaySettings gateway-name="sms" display-name="SMS" />
		<GatewaySettings gateway-name="telegram" display-name="Telegram">
			<TelegramInstructions slot="instructions" />
		</GatewaySettings>
	</div>
</template>

<script>
	import L10n from "components/L10n.vue";
	import GatewaySettings from "../components/GatewaySettings.vue";
	import SignalInstructions from "../components/SignalInstructions.vue";
	import TelegramInstructions from "../components/TelegramInstructions.vue";

	export default {
		components: {
			TelegramInstructions,
			SignalInstructions,
			GatewaySettings,
			L10n
		}
	};
</script>