- Converting all to Typescript
- Installing 1.0.0.beta Quasar Upgrade - (Part 1 - Upgrade Components)
This commit is contained in:
@@ -225,7 +225,7 @@ namespace Actions {
|
||||
|
||||
async function resetpwd(context, paramquery: IUserState) {
|
||||
|
||||
let usertosend = {
|
||||
const usertosend = {
|
||||
keyappid: process.env.PAO_APP_ID,
|
||||
idapp: process.env.APP_ID,
|
||||
email: paramquery.email,
|
||||
@@ -573,14 +573,13 @@ namespace Actions {
|
||||
|
||||
|
||||
export const actions = {
|
||||
resetpwd: b.dispatch(resetpwd),
|
||||
requestpwd: b.dispatch(requestpwd),
|
||||
vreg: b.dispatch(vreg),
|
||||
signup: b.dispatch(signup),
|
||||
signin: b.dispatch(signin),
|
||||
autologin_FromLocalStorage: b.dispatch(autologin_FromLocalStorage),
|
||||
logout: b.dispatch(logout),
|
||||
autologin_FromLocalStorage: b.dispatch(autologin_FromLocalStorage)
|
||||
|
||||
requestpwd: b.dispatch(requestpwd),
|
||||
resetpwd: b.dispatch(resetpwd),
|
||||
signin: b.dispatch(signin),
|
||||
signup: b.dispatch(signup),
|
||||
vreg: b.dispatch(vreg)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -589,9 +588,9 @@ const UserModule = {
|
||||
get state() {
|
||||
return stateGetter()
|
||||
},
|
||||
actions: Actions.actions,
|
||||
getters: Getters.getters,
|
||||
mutations: Mutations.mutations,
|
||||
actions: Actions.actions
|
||||
mutations: Mutations.mutations
|
||||
}
|
||||
|
||||
export default UserModule
|
||||
|
||||
@@ -77,7 +77,7 @@ export const tools = {
|
||||
value: 0,
|
||||
icon: 'expand_more'
|
||||
}],
|
||||
'esEs': [
|
||||
'es': [
|
||||
{
|
||||
id: 1,
|
||||
label: 'Alta',
|
||||
@@ -178,7 +178,7 @@ export const tools = {
|
||||
checked: false
|
||||
}
|
||||
],
|
||||
'esEs': [
|
||||
'es': [
|
||||
{
|
||||
id: 10,
|
||||
label: '',
|
||||
@@ -263,7 +263,7 @@ export const tools = {
|
||||
icon: 'rowing',
|
||||
},
|
||||
],
|
||||
'esEs': [
|
||||
'es': [
|
||||
{
|
||||
id: 10,
|
||||
label: 'Mostrar Tareas',
|
||||
@@ -305,7 +305,7 @@ export const tools = {
|
||||
checked: true
|
||||
}
|
||||
],
|
||||
'esEs': [
|
||||
'es': [
|
||||
{
|
||||
id: 10,
|
||||
label: 'Mostrar los ultimos N completados',
|
||||
|
||||
Reference in New Issue
Block a user