Skip to content

Commit ce7898c

Browse files
committed
Fixed the documentation URL
1 parent df8e25c commit ce7898c

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
[HTTP SMS](https://httpsms.com) is a service that lets you use your android phone as an SMS Gateway to send and receive SMS messages.
88
You make a request to the API which it triggers your android phone to send an SMS.
99

10+
Quick Start Guide 👉 [https://docs.httpsms.com](https://docs.httpsms.com)
11+
1012
## Why?
1113

1214
I'm originally from Cameroon and I wanted an automated way to send and receive SMS messages using an API.

web/.env.production

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
BASE_URL=https://api.httpsms.com
22

33
APP_URL=https://httpsms.com
4-
APP_NAME="Http SMS"
4+
APP_NAME="HTTP SMS"
55
APP_GITHUB_URL=https://github.com/NdoleStudio/httpsms
6-
APP_DOCUMENTATION_URL=https://api.httpsms.com
6+
APP_DOCUMENTATION_URL=https://docs.httpsms.com
77
APP_DOWNLOAD_URL=https://github.com/NdoleStudio/httpsms/releases/download/v0.0.1/HttpSms.apk
88
APP_ENV=production

web/pages/settings/index.vue

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,21 @@
6060
class="mb-n2"
6161
@click:append="apiKeyShow = !apiKeyShow"
6262
></v-text-field>
63-
<copy-button
64-
:block="$vuetify.breakpoint.mdAndDown"
65-
:large="$vuetify.breakpoint.mdAndDown"
66-
:value="apiKey"
67-
copy-text="Copy API Key"
68-
notification-text="API Key copied successfully"
69-
></copy-button>
63+
<div>
64+
<copy-button
65+
:block="$vuetify.breakpoint.mdAndDown"
66+
:large="$vuetify.breakpoint.mdAndDown"
67+
:value="apiKey"
68+
copy-text="Copy API Key"
69+
notification-text="API Key copied successfully"
70+
></copy-button>
71+
<v-spacer></v-spacer>
72+
<v-btn
73+
v-if="$vuetify.breakpoint.lgAndUp"
74+
:href="$store.getters.getAppData.documentationUrl"
75+
>Documentation</v-btn
76+
>
77+
</div>
7078
<h5 class="text-h4 mb-3 mt-12">Phones</h5>
7179
<p>
7280
List of mobile phones which are registered for sending and

0 commit comments

Comments
 (0)