Permalink
Please sign in to comment.
Showing
with
50 additions
and 11 deletions.
- +29 −1 README.md
- +19 −5 config/default.json
- +2 −5 src/models/meeting.js
| @@ -1,7 +1,21 @@ | ||
| { | ||
| - "port": 3000, | ||
| - "mail": { | ||
| - "from": "Name Surname <YOUR MAIL>", | ||
| - "to": "Recepients(can write multiple separating with a comma ',')" | ||
| - } | ||
| + "port": 3000, | ||
| + "mail": { | ||
| + "from": "Name Surname <YOUR MAIL>", | ||
| + "to": "Recepients(can write multiple separating with a comma ',')" | ||
| + }, | ||
| + "questions": { | ||
| + "default": [ | ||
| + "What did you do yesterday?", | ||
| + "What are you going to do today?", | ||
| + "Did you encounter any problems?" | ||
| + ], | ||
| + "CHANNEL-NAME": [ | ||
| + "How do you feel?" | ||
| + ], | ||
| + "ANOTHER-CHANNEL-NAME": [ | ||
| + "Another question?", | ||
| + "Perhaps more?" | ||
| + ] | ||
| + } | ||
| } |
0 comments on commit
4f3382e