Skip to content

Give phone number to restaurant, and receive SMS when there is table free.

License

Notifications You must be signed in to change notification settings

dkeza/waitandeat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Wait and it

Give phone number to restaurant, and receive SMS when there is table free.

I also used Zapier and Twilio to send E-Mail and SMS.

My firebase security rules:

{
  "rules": {
    "emails": {
      "$emailId": {
        ".read": "false",
        ".write": "auth != null"
      }
    },
    "textMessages": {
      "$textMessageId": {
        ".read": "false",
        ".write": "auth != null"
      }
    },
    "users": {
      "$userId": {
        ".read": "auth != null && auth.id == $userId",
        ".write": "auth != null && auth.id == $userId"
      }
    }
  }
}

Code was adapted from angularcourse.com

About

Give phone number to restaurant, and receive SMS when there is table free.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published