Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function verifyInviteCode(code)
- {
- var formData=
- {
- "code":code
- };
- $.ajax(
- {
- type:"POST",dataType:"json",data:formData,url:'/api/invite/verify',success:function(response)
- {
- console.log(response)
- }
- ,error:function(response)
- {
- console.log(response)
- }
- }
- )
- }
- function makeInviteCode()
- {
- $.ajax(
- {
- type:"POST",dataType:"json",url:'/api/invite/how/to/generate',success:function(response)
- {
- console.log(response)
- }
- ,error:function(response)
- {
- console.log(response)
- }
- }
- )
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement