Requires at least WishList Member 3.3.6948
Demo Videos:
- Incoming WebHooks - https://www.screencast.com/t/dIEjHL5kjhW
- Outgoing WebHooks - https://www.screencast.com/t/xV9csVvbdQsJ
| /* | |
| * Author: Mike Lopez <[email protected]> | |
| * Description: Find a 1-hour slot in Google Calendar to schedule our event in | |
| */ | |
| // sort events by start date (because nope, they're not sorted) | |
| GoogleCalendar.listEventsForDateRange.sort(function(a, b) { | |
| if (moment(a.Start).isSame(b.Start)) { | |
| return 0; | |
| } |
| Vagrant.configure("2") do |config| | |
| # we use the generic ubuntu 20.04 box | |
| config.vm.box = "generic/ubuntu2004" | |
| # set the local hostname to myapp.local | |
| # you may change this to whatever you like but it's best to keep the .local part | |
| config.vm.hostname = 'myapp.local' | |
| # sync folders | |
| config.vm.allowed_synced_folder_types = [:nfs, :smb, :sshfs, :rsync] |
Requires at least WishList Member 3.3.6948
Demo Videos: