- Nuovi Passi da completare: Leggere le Linee Guida e accettare le condizioni

- Aggiunti i Video e confermare di averli visti
 - In "La tua Lavagna" sono stati aggiunti come requisiti: (Accetto le Linee Guida e Vedo il Video di AYNI)
 - Aggiunto bottone "Invita Persone": apre la pagina dove c'è il messaggio da inviare alle persone.
 - La nuova pagina di registrazione https://test.gifteconomy.app/signup/paoloar77, comprende ora il testo delle Linee Guida + i Video, ed in fondo i campi per registrarsi.
This commit is contained in:
Paolo Arena
2020-02-07 22:08:01 +01:00
parent b15edbe5d2
commit 7d8c130ce6
27 changed files with 714 additions and 321 deletions

View File

@@ -6,6 +6,7 @@ import { CMyPage } from '../../../components/CMyPage/index'
import { fieldsTable } from '@src/store/Modules/fieldsTable'
import { shared_consts } from '@src/common/shared_vuejs'
import { tools } from '../../../store/Modules/tools'
import { static_data } from '../../../db/static_data'
@Component({
components: { CGridTableRec, CMyPage }
@@ -48,4 +49,13 @@ export default class UsersList extends Vue {
get db_fieldsTable() {
return fieldsTable
}
get userlist() {
if (static_data.functionality.ENABLE_REG_AYNI) {
return this.db_fieldsTable.colTableUsers
} else {
return this.db_fieldsTable.colTableUsersBase
}
}
}