elwayman02/ember-data-github

View on GitHub
addon/models/github-commit.js

Summary

Maintainability
A
0 mins
Test Coverage
import Model from 'ember-data/model';
import attr from 'ember-data/attr';

export default Model.extend({
  sha: attr('string'),
  url: attr('string'),
  parents: attr(),
  commit: attr(),
  author: attr(),
  committer: attr()
});