-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
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
Call Cloudinary Delete Method within a Method #38
Comments
Meteor.call("c.delete_by_public_id") |
@Lepozepo Thank you.
is this correct? |
Meteor.call "c.delete_by_public_id", publicId, (err,res) ->
if not err
# Do Stuff with res
else
# throw new Meteor.Error "it failed miserably" |
Thank you. This should be in the docs! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How do I call a cloudinary delete method within a meteor method (server side)?
The text was updated successfully, but these errors were encountered: