- mail_settings_controller for setting smtp settings - added view ror rjecting dataset for editor - added new model AppConfig for stroing appwide config values - better validate_chesum.ts command with process chunking - added vue3 apps 'BasicSettings' like email, profile settings - started with 2 multilingual capabilities - npm updates
This commit is contained in:
parent
010bead723
commit
b06ccae603
67 changed files with 7820 additions and 1463 deletions
|
@ -28,7 +28,7 @@ export enum State {
|
|||
STATE_ENABLED = 2,
|
||||
}
|
||||
|
||||
export const saveState = async (data) => {
|
||||
export const saveState = async (data: any) => {
|
||||
const url = '/api/twofactor_totp/settings/enable';
|
||||
|
||||
const resp = await axios.post(url, data);
|
||||
|
@ -122,7 +122,7 @@ export const MainService = defineStore('main', {
|
|||
this.dataset = null;
|
||||
},
|
||||
|
||||
fetch(sampleDataKey: any) {
|
||||
fetch(sampleDataKey: string) {
|
||||
// sampleDataKey= clients or history
|
||||
axios
|
||||
.get(`/data-sources/${sampleDataKey}.json`)
|
||||
|
@ -136,7 +136,7 @@ export const MainService = defineStore('main', {
|
|||
});
|
||||
},
|
||||
|
||||
fetchApi(sampleDataKey) {
|
||||
fetchApi(sampleDataKey: string) {
|
||||
// sampleDataKey= authors or datasets
|
||||
axios
|
||||
.get(`/api/${sampleDataKey}`)
|
||||
|
@ -150,7 +150,7 @@ export const MainService = defineStore('main', {
|
|||
});
|
||||
},
|
||||
|
||||
setState(state) {
|
||||
setState(state: any) {
|
||||
this.totpState = state;
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue