Skip to content

More info #15

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,15 @@ on the class and pass it the Parse class name, and the name of any
attributes of that class

Using CoffeeScript:


> Parse.Model
> `path "/classes/modelName"`
> That means that we will use Parse api path for classes

```coffeescript
app.factory 'Car', (Parse) ->
class Car extends Parse.model
class Car extends Parse.Model
@configure "Car", "make", "model", "year"

@customClassMethod: (arg) ->
Expand All @@ -69,6 +75,22 @@ app.factory 'Car', (Parse) ->
# add custom instance methods like this
```

> Parse.User
> `path "/users"`
> The User class extends from Parse.Model the main difference is in the Parse api path

```coffeescript
app.factory 'User', (Parse) ->
class User extends Parse.User
@configure "User", "users", "username", "password"

@customClassMethod: (arg) ->
# add custom class methods like this

customInstanceMethod: (arg) ->
# add custom instance methods like this
```

Using JavaScript:
```javascript
// Not implemented yet, sorry
Expand Down