Skip to content

Commit

Permalink
Merge pull request #3 from parse-community/master
Browse files Browse the repository at this point in the history
Sync
  • Loading branch information
moonion authored Jan 30, 2019
2 parents 46ac7e7 + 78eb3df commit 3aefd64
Show file tree
Hide file tree
Showing 11 changed files with 709 additions and 361 deletions.
4 changes: 1 addition & 3 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
**Please use this template. If you don't use this template, your issue may be closed without comment.**
We use GitHub Issues for bugs.
If you have a non-bug question, ask on Stack Overflow or Server Fault:
- https://stackoverflow.com/questions/tagged/parse.com
- https://serverfault.com/tags/parse
If you have a non-bug question, ask on [Parse Community's Discourse forum](https://community.parseplatform.org/c/parse-server)
If you have a vulnerability disclosure, please follow our policy available here https://github.com/parse-community/parse-server/blob/master/SECURITY.md
Expand Down
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/---getting-help.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
name: "🙋‍Getting Help"
about: Join https://community.parseplatform.org

---
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/---parse-server-3-0-0.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ about: Report an issue while migrating to parse-server 3.0.0
<!---
** Use this template only if you have an issue migrating to parse-server 3.0.0 **
If you have a question, ask on [Parse Community's Discourse forum](https://community.parseplatform.org/c/parse-server)
If you have a vulnerability disclosure, please follow our policy available here https://github.com/parse-community/parse-server/blob/master/SECURITY.md
You may also search through existing issues before opening a new one: https://github.com/parse-community/parse-server/issues?utf8=%E2%9C%93&q=is%3Aissue
Expand Down
4 changes: 1 addition & 3 deletions .github/ISSUE_TEMPLATE/---push-notifications.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ about: Issues with setting up or delivering push notifications
**We use GitHub Issues for reporting bugs with parse-server.**
If you have a *question*, you should join the gitter chat where a community of more than 200 parse users gather.
- https://gitter.im/ParsePlatform/Chat
If you have a *question*, you should join the [Parse Community's Discourse forum](https://community.parseplatform.org/c/parse-server)
If you have a non-bug question, ask on Stack Overflow or Server Fault:
- https://stackoverflow.com/questions/tagged/parse.com
Expand Down
8 changes: 1 addition & 7 deletions .github/ISSUE_TEMPLATE/---report-an-issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,7 @@ about: Report an issue on parse-server
**We use GitHub Issues for reporting bugs with parse-server.**
If you have a *question*, you should join the gitter chat where a community of more than 200 parse users gather.
- https://gitter.im/ParsePlatform/Chat
If you have a non-bug question, ask on Stack Overflow or Server Fault:
- https://stackoverflow.com/questions/tagged/parse.com
- https://serverfault.com/tags/parse
If you have a *question*, you should join the [Parse Community's Discourse forum](https://community.parseplatform.org/c/parse-server).
If you have a vulnerability disclosure, please follow our policy available here https://github.com/parse-community/parse-server/blob/master/SECURITY.md
Expand Down
6 changes: 3 additions & 3 deletions 3.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ Parse.Cloud.define('downloadImage', function(request, response) {
You would call this method with:

```js
Parse.Cloud.run({
url: '....',
Parse.Cloud.run('downloadImage',{
url: 'https://example.com/file',
name: 'my-file'
});
```
Expand All @@ -144,7 +144,7 @@ To migrate this function you would follow the same practices as the ones before,

```js
// after with async/await
Parse.Cloud.beforeSave('MyClassName', async (request) => {
Parse.Cloud.define('downloadImage', async (request) => {
const {
url, name
} = request.params;
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Build Status](https://img.shields.io/travis/parse-community/parse-server/master.svg?style=flat)](https://travis-ci.org/parse-community/parse-server)
[![Coverage Status](https://img.shields.io/codecov/c/github/parse-community/parse-server/master.svg)](https://codecov.io/github/parse-community/parse-server?branch=master)
[![npm version](https://img.shields.io/npm/v/parse-server.svg?style=flat)](https://www.npmjs.com/package/parse-server)
[![Join Chat](https://img.shields.io/badge/gitter-join%20chat%20%E2%86%92-brightgreen.svg)](https://gitter.im/ParsePlatform/Chat)
[![Join The Conversation](https://img.shields.io/discourse/https/communiy.parseplatform.org/topics.svg)](https://community.parseplatform.org/c/parse-server)
[![Greenkeeper badge](https://badges.greenkeeper.io/parse-community/parse-server.svg)](https://greenkeeper.io/)


Expand Down Expand Up @@ -397,7 +397,8 @@ We have written up a [migration guide](3.0.0.md), hoping this will help you tran

# Support

For implementation related questions or technical support, please refer to the [Stack Overflow](http://stackoverflow.com/questions/tagged/parse.com) and [Server Fault](https://serverfault.com/tags/parse) communities.
For implementation related questions or any other questions please refer to [Parse Community's Discourse forum](https://community.parseplatform.org/c/parse-server).


If you believe you've found an issue with Parse Server, make sure these boxes are checked before [reporting an issue](https://github.com/parse-community/parse-server/issues):

Expand Down
Loading

0 comments on commit 3aefd64

Please sign in to comment.