- Gruppi (3) - lista degli utenti del gruppo
This commit is contained in:
72
src/server/populate/catgrps.js
Normal file
72
src/server/populate/catgrps.js
Normal file
@@ -0,0 +1,72 @@
|
||||
module.exports = {
|
||||
list: [
|
||||
{
|
||||
_id: 1,
|
||||
descr: "Abitare",
|
||||
},
|
||||
{
|
||||
_id: 2,
|
||||
descr: "Arte",
|
||||
},
|
||||
{
|
||||
_id: 3,
|
||||
descr: "Alimentazione",
|
||||
},
|
||||
{
|
||||
_id: 4,
|
||||
descr: "Artigianato",
|
||||
},
|
||||
{
|
||||
_id: 5,
|
||||
descr: "Assistenza Legale",
|
||||
},
|
||||
{
|
||||
_id: 6,
|
||||
descr: "Benessere e Salute",
|
||||
},
|
||||
{
|
||||
_id: 7,
|
||||
descr: "Gruppi Locali",
|
||||
},
|
||||
{
|
||||
_id: 8,
|
||||
descr: "Istruzione",
|
||||
},
|
||||
{
|
||||
_id: 2,
|
||||
descr: "Arte",
|
||||
},
|
||||
{
|
||||
_id: 9,
|
||||
descr: "Mobilità",
|
||||
},
|
||||
{
|
||||
_id: 10,
|
||||
descr: "Sport",
|
||||
},
|
||||
{
|
||||
_id: 11,
|
||||
descr: "Servizi",
|
||||
},
|
||||
{
|
||||
_id: 12,
|
||||
descr: "Tecnologia",
|
||||
},
|
||||
{
|
||||
_id: 13,
|
||||
descr: "Turismo",
|
||||
},
|
||||
{
|
||||
_id: 14,
|
||||
descr: "Ecovillaggi",
|
||||
},
|
||||
{
|
||||
_id: 15,
|
||||
descr: "Feste",
|
||||
},
|
||||
{
|
||||
_id: 16,
|
||||
descr: "Altro",
|
||||
},
|
||||
]
|
||||
}
|
||||
@@ -34,6 +34,10 @@ module.exports = {
|
||||
const { Sector } = require('../models/sector');
|
||||
this.insertIntoDb('sectors', Sector)
|
||||
|
||||
// CatGrps
|
||||
const { CatGrp } = require('../models/catgrp');
|
||||
this.insertIntoDb('catgrps', CatGrp)
|
||||
|
||||
// Skills (Competenze)
|
||||
const { Skill } = require('../models/skill');
|
||||
this.insertIntoDb('skills', Skill)
|
||||
|
||||
Reference in New Issue
Block a user