Skip to content
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

Add ability to subclass definitions #3

Closed
jamesarosen opened this issue Aug 30, 2011 · 1 comment
Closed

Add ability to subclass definitions #3

jamesarosen opened this issue Aug 30, 2011 · 1 comment

Comments

@jamesarosen
Copy link
Collaborator

given a resource class:

Foo = SC.Resource.define({
  url: '/foos',
  schema: {
    id: Number,
    name: String,
    created_at: Date
  }
});

I'd like to be able to subclass Foo and reopen the schema. Perhaps something like

Bar = Foo.define({
  url: '/bars',
  schema: $.extend({}, Foo.schema, {
    foo: { type: Foo, path: "foo_id" }
  })
});
@staugaard
Copy link
Owner

Done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants