mirror of
https://github.com/knadh/listmonk.git
synced 2025-10-06 21:36:54 +08:00
Fix admin UI legacy user warning.
This commit is contained in:
parent
b0f6c22baa
commit
b7155a45e4
1 changed files with 20 additions and 16 deletions
|
@ -64,6 +64,7 @@
|
||||||
</b-button>
|
</b-button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<template v-if="serverConfig.update">
|
||||||
<div v-if="serverConfig.update.update.is_new" class="notification is-success">
|
<div v-if="serverConfig.update.update.is_new" class="notification is-success">
|
||||||
{{ $t('settings.updateAvailable', {
|
{{ $t('settings.updateAvailable', {
|
||||||
version: `${serverConfig.update.update.release_version}
|
version: `${serverConfig.update.update.release_version}
|
||||||
|
@ -80,14 +81,17 @@
|
||||||
<a v-if="m.url" :href="m.url" target="_blank" rel="noopener noreferer">View</a>
|
<a v-if="m.url" :href="m.url" target="_blank" rel="noopener noreferer">View</a>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
</template>
|
||||||
|
|
||||||
<div v-if="serverConfig.has_legacy_user" class="notification is-danger">
|
<div v-if="serverConfig.has_legacy_user" class="notification is-danger">
|
||||||
<b-icon icon="warning-empty" />
|
<b-icon icon="warning-empty" />
|
||||||
Remove the <code>admin_username</code> and <code>admin_password</code> fields from the TOML
|
Remove the <code>admin_username</code> and <code>admin_password</code> fields from the TOML
|
||||||
configuration file. Starting this version, users are managed via the
|
configuration file. If you are using APIs, create and use new credentials.
|
||||||
|
Users are now managed via the
|
||||||
<router-link :to="{ name: 'users' }">
|
<router-link :to="{ name: 'users' }">
|
||||||
Admin -> Settings -> Users
|
Admin -> Settings -> Users
|
||||||
</router-link> dashboard.
|
</router-link> dashboard. <a href="https://listmonk.app/docs/migrating-users" target="_blank"
|
||||||
|
rel="noopener noreferer">Learn more.</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue