codebuddies / greetbot

Slackbot for greeting new codebuddies users
MIT License
9 stars 14 forks source link

add nodemon package and fix initial.js is_bot verification #27

Closed robinfla closed 6 years ago

robinfla commented 6 years ago

Added nodemon package to be able to see changes without starting over the server each time Added package-lock.json in .gitignore Changed if (event.type === 'team_join' || !event.is_bot) into if (event.type === 'team_join' && !event.user.is_bot) in src/app/routes/events/initial.js line 21