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

github.com/nextcloud/twofactor_gateway.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'js/views/SMSSettings.vue')
-rw-r--r--js/views/SMSSettings.vue13
1 files changed, 13 insertions, 0 deletions
diff --git a/js/views/SMSSettings.vue b/js/views/SMSSettings.vue
new file mode 100644
index 0000000..b386e35
--- /dev/null
+++ b/js/views/SMSSettings.vue
@@ -0,0 +1,13 @@
+<template>
+ <GatewaySettings gateway-name="sms" display-name="SMS" />
+</template>
+
+<script>
+ import GatewaySettings from "../components/GatewaySettings.vue";
+
+ export default {
+ components: {
+ GatewaySettings,
+ }
+ };
+</script>