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:
authorFront <27463495+Frontesque@users.noreply.github.com>2021-12-27 22:13:05 +0300
committerFront <27463495+Frontesque@users.noreply.github.com>2021-12-27 22:13:05 +0300
commit76422c556a77b0535f92a42efd67fd08c6a7f7d8 (patch)
tree153fd2a4f50597f54f6d8a084e6f706a026cad4d
parentb07890a36491a57fd7d3df8a341caceb2b6b3974 (diff)
url information
-rw-r--r--Website/pages/documentation.vue12
-rw-r--r--Website/pages/documentation/url.vue16
-rw-r--r--Website/pages/documentation/usage-rights.vue9
3 files changed, 29 insertions, 8 deletions
diff --git a/Website/pages/documentation.vue b/Website/pages/documentation.vue
index 9dac01b..545b156 100644
--- a/Website/pages/documentation.vue
+++ b/Website/pages/documentation.vue
@@ -32,24 +32,24 @@
return {
//--- Links To Generate Above ---//
links: [{
- text: 'API Usage Rights',
+ text: 'Usage Rights',
icon: 'mdi-book-open-variant',
- to: 'usage-rights'
+ to: '/documentation/usage-rights'
},
{
- text: 'API URL Information',
+ text: 'URL Information',
icon: 'mdi-web',
- to: 'url'
+ to: '/documentation/url'
},
{
text: 'Available Endpoints',
icon: 'mdi-transit-connection-variant',
- to: 'endpoints'
+ to: '/documentation/endpoints'
},
{
text: 'Basic Fetching Tutorial',
icon: 'mdi-school',
- to: 'fetching'
+ to: '/documentation/fetching'
},
]
}
diff --git a/Website/pages/documentation/url.vue b/Website/pages/documentation/url.vue
index 432fc8f..076b8b0 100644
--- a/Website/pages/documentation/url.vue
+++ b/Website/pages/documentation/url.vue
@@ -1,6 +1,18 @@
<template>
<div>
- <h1>Welcome to the <span class="primary--text">official RYD docs</span>!</h1>
- <p>To get started, select a section.</p>
+ <h1 class="primary--text">URL Information</h1>
+ The API is accessible over the following base URL:
+ <a :href="apiUrl" v-text="apiUrl" />
+
</div>
</template>
+
+<script>
+export default {
+ data() {
+ return {
+ apiUrl: process.env.apiUrl
+ }
+ }
+}
+</script> \ No newline at end of file
diff --git a/Website/pages/documentation/usage-rights.vue b/Website/pages/documentation/usage-rights.vue
index f414a0b..22566ae 100644
--- a/Website/pages/documentation/usage-rights.vue
+++ b/Website/pages/documentation/usage-rights.vue
@@ -9,3 +9,12 @@
</div>
</template>
+
+<style scoped>
+li {
+ margin-top: 0.5em;
+}
+b {
+ font-weight: 900 !important;
+}
+</style> \ No newline at end of file