Skip to content

Commit

Permalink
remove ddns configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
dernasherbrezon committed Feb 9, 2024
1 parent 0684d2d commit 067e1f3
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 240 deletions.
1 change: 0 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
</b-nav-item-dropdown>
<b-nav-item-dropdown text="Configuration">
<b-dropdown-item to="/admin/config/general">General</b-dropdown-item>
<b-dropdown-item to="/admin/config/ddns">DDNS</b-dropdown-item>
<b-dropdown-item to="/admin/config/r2cloud">Integrations</b-dropdown-item>
</b-nav-item-dropdown>
<b-nav-item v-on:click.prevent="logout">Logout</b-nav-item>
Expand Down
120 changes: 0 additions & 120 deletions src/components/pages/configuration/ddns.vue

This file was deleted.

6 changes: 0 additions & 6 deletions src/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import statusOverview from '@/components/pages/status/overview'
import statusMetrics from '@/components/pages/status/metrics'

import configGeneral from '@/components/pages/configuration/general'
import configDDNS from '@/components/pages/configuration/ddns'
import configIntegrations from '@/components/pages/configuration/integrations'

import tle from '@/components/pages/tle'
Expand Down Expand Up @@ -81,11 +80,6 @@ const router = new Router({
name: 'configGeneral',
component: configGeneral
},
{
path: '/admin/config/ddns',
name: 'configDDNS',
component: configDDNS
},
{
path: '/admin/config/r2cloud',
name: 'configIntegrations',
Expand Down
113 changes: 0 additions & 113 deletions static/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -285,68 +285,6 @@
}
}
},
"/admin/config/ddns": {
"get": {
"tags": [
"Configuration"
],
"summary": "Get base station DDNS configuration",
"responses": {
"200": {
"description": "DDNS configuration",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DDNSConfiguration"
}
}
}
}
},
"security": [
{
"Bearer": []
}
]
},
"post": {
"tags": [
"Configuration"
],
"summary": "Update base station DDNS configuration",
"requestBody": {
"description": "DDNS configuration",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DDNSConfigurationRequest"
}
}
},
"required": true
},
"responses": {
"400": {
"description": "If request parameters are missing or empty",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Response"
}
}
}
},
"200": {
"description": "Success"
}
},
"security": [
{
"Bearer": []
}
]
}
},
"/admin/config/general": {
"get": {
"tags": [
Expand Down Expand Up @@ -1126,57 +1064,6 @@
}
}
},
"DDNSConfigurationRequest": {
"type": "object",
"properties": {
"username": {
"type": "string",
"description": "username used for ddns authentication"
},
"password": {
"type": "string",
"description": "password used for ddns authentication"
},
"domain": {
"type": "string",
"description": "domain for this base station",
"example": "example.ddns.com"
},
"type": {
"type": "string",
"description": "ddns provider",
"example": "NONE"
}
}
},
"DDNSConfiguration": {
"type": "object",
"properties": {
"username": {
"type": "string",
"description": "username used for ddns authentication"
},
"password": {
"type": "string",
"description": "password used for ddns authentication"
},
"domain": {
"type": "string",
"description": "domain for this base station",
"example": "example.ddns.com"
},
"type": {
"type": "string",
"description": "ddns provider",
"example": "NONE"
},
"currentIp": {
"type": "string",
"description": "Current external IP",
"example": "127.0.0.1"
}
}
},
"ConfigurationStatus": {
"type": "object",
"properties": {
Expand Down

0 comments on commit 067e1f3

Please sign in to comment.