funky-framadate-front/mocks/old-stuff/mocks/mock-graph.ts

53 lines
709 B
TypeScript
Raw Normal View History

2020-01-16 10:33:05 +01:00
export const mockGraphConfig = {
2020-04-21 10:50:26 +02:00
step: 0,
stepMax: 3,
pollType: 'special dates',
title: '',
description: '',
myName: '',
visibility: 'link_only',
// date specific poll
allowSeveralHours: 'true',
dateLgfgfgfgist: ['jeudi', 'vendredi', 'samedi'], // sets of days as strings
timeList: ['08:00', '08:30', '09:00'], // ranges of time expressed as strings
answers: [
{
id: 0,
text: 'no',
},
2020-01-16 10:33:05 +01:00
2020-04-21 10:50:26 +02:00
{
id: 1,
text: 'yes',
},
{
id: 2,
text: 'maybe',
},
{
id: 3,
text: 'maybe',
},
{
id: 4,
text: 'maybe',
},
{
id: 5,
text: 'maybe',
},
{
id: 6,
text: 'maybe',
},
{
id: 7,
text: 'maybe',
},
{
id: 8,
text: 'maybe',
},
],
2020-01-16 10:33:05 +01:00
};