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

github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Website/pages/documentation/endpoints.vue')
-rw-r--r--Website/pages/documentation/endpoints.vue19
1 files changed, 19 insertions, 0 deletions
diff --git a/Website/pages/documentation/endpoints.vue b/Website/pages/documentation/endpoints.vue
new file mode 100644
index 0000000..ef94c10
--- /dev/null
+++ b/Website/pages/documentation/endpoints.vue
@@ -0,0 +1,19 @@
+<template>
+ <div>
+ <h1 class="primary--text">Available Endpoints</h1>
+ List of available endpoints is available here:<br />
+ <a :href="endpointUrl" target="_blank" v-text="endpointUrl" />
+ </div>
+</template>
+
+<script>
+let apiUrl = process.env.apiUrl;
+export default {
+ data() {
+ return {
+ apiUrl: apiUrl,
+ endpointUrl: apiUrl + "/swagger/index.html",
+ };
+ },
+};
+</script>