We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current Like story syntax is something like:
angel.likes.create({ likable_type: '', likable_id: '' }, function(err, body) { if ( err ) return console.log(err); console.log(body); // Something with messages here. });
We need to change it as:
angel.likes.like({ likable_type: '', likable_id: '' }, function(err, body) { if ( err ) return console.log(err); console.log(body); // Something with messages here. });
In the same way, change the Delete / Unlike process as defined:
Delete / Unlike
angel.likes.trash('like_id', function(err, body) { if ( err ) return console.log(err); console.log(body); // Something with messages here. });
TO
angel.likes.unlike('like_id', function(err, body) { if ( err ) return console.log(err); console.log(body); // Something with messages here. });
The text was updated successfully, but these errors were encountered:
Fixing ArkeologeN#3
f6642c9
ArkeologeN
No branches or pull requests
Current Like story syntax is something like:
We need to change it as:
In the same way, change the
Delete / Unlike
process as defined:TO
The text was updated successfully, but these errors were encountered: