forked from AkkomaGang/admin-fe
Merge pull request 'Purge SSH settings' (#1) from purge-ssh into main
Reviewed-on: AkkomaGang/admin-fe#1
This commit is contained in:
commit
e84e6ce40d
4 changed files with 7 additions and 7 deletions
|
@ -27,7 +27,9 @@ pipeline:
|
||||||
build:
|
build:
|
||||||
when:
|
when:
|
||||||
event:
|
event:
|
||||||
- tag
|
- push
|
||||||
|
branch:
|
||||||
|
- main
|
||||||
image: node:14
|
image: node:14
|
||||||
commands:
|
commands:
|
||||||
- git config --global url."https://github.com/".insteadOf git://github.com/
|
- git config --global url."https://github.com/".insteadOf git://github.com/
|
||||||
|
@ -37,7 +39,9 @@ pipeline:
|
||||||
release:
|
release:
|
||||||
when:
|
when:
|
||||||
event:
|
event:
|
||||||
- tag
|
- push
|
||||||
|
branch:
|
||||||
|
- main
|
||||||
image: node:16
|
image: node:16
|
||||||
secrets:
|
secrets:
|
||||||
- SCW_ACCESS_KEY
|
- SCW_ACCESS_KEY
|
||||||
|
|
|
@ -436,7 +436,6 @@ export default {
|
||||||
gopher: 'Gopher',
|
gopher: 'Gopher',
|
||||||
jobQueue: 'Job queue',
|
jobQueue: 'Job queue',
|
||||||
webPush: 'Web push encryption',
|
webPush: 'Web push encryption',
|
||||||
esshd: 'BBS / SSH access',
|
|
||||||
rateLimiters: 'Rate limiters',
|
rateLimiters: 'Rate limiters',
|
||||||
other: 'Other',
|
other: 'Other',
|
||||||
success: 'Settings changed successfully!',
|
success: 'Settings changed successfully!',
|
||||||
|
|
|
@ -2,7 +2,6 @@ export const tabs = [
|
||||||
{ label: 'ActivityPub', path: 'activity-pub', tab: ':activity_pub' },
|
{ label: 'ActivityPub', path: 'activity-pub', tab: ':activity_pub' },
|
||||||
{ label: 'Authentication', path: 'authentication', tab: ':authentication' },
|
{ label: 'Authentication', path: 'authentication', tab: ':authentication' },
|
||||||
{ label: 'Captcha', path: 'captcha', tab: ':captcha' },
|
{ label: 'Captcha', path: 'captcha', tab: ':captcha' },
|
||||||
{ label: 'BBS / SSH access', path: 'esshd', tab: ':esshd' },
|
|
||||||
{ label: 'Emoji', path: 'emoji', tab: ':emoji' },
|
{ label: 'Emoji', path: 'emoji', tab: ':emoji' },
|
||||||
{ label: 'Frontend', path: 'frontend', tab: ':frontend' },
|
{ label: 'Frontend', path: 'frontend', tab: ':frontend' },
|
||||||
{ label: 'Gopher', path: 'gopher', tab: ':gopher' },
|
{ label: 'Gopher', path: 'gopher', tab: ':gopher' },
|
||||||
|
|
|
@ -14,9 +14,7 @@
|
||||||
<setting :setting-group="frontends" :data="frontendsData"/>
|
<setting :setting-group="frontends" :data="frontendsData"/>
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-divider v-if="frontends" class="divider thick-line"/>
|
<el-divider v-if="frontends" class="divider thick-line"/>
|
||||||
<el-form :model="assetsData" :label-position="labelPosition" :label-width="labelWidth">
|
<el-form :model="assetsData" :label-position="labelPosition" :label-width="labelWidth"/>
|
||||||
<setting :setting-group="assets" :data="assetsData"/>
|
|
||||||
</el-form>
|
|
||||||
<el-divider v-if="assets" class="divider thick-line"/>
|
<el-divider v-if="assets" class="divider thick-line"/>
|
||||||
<el-form :model="chatData" :label-position="labelPosition" :label-width="labelWidth">
|
<el-form :model="chatData" :label-position="labelPosition" :label-width="labelWidth">
|
||||||
<setting :setting-group="chat" :data="chatData"/>
|
<setting :setting-group="chat" :data="chatData"/>
|
||||||
|
|
Loading…
Reference in a new issue