mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 16:14:25 +03:00
14 lines
234 B
JavaScript
14 lines
234 B
JavaScript
|
import appFixtures from 'ghost/fixtures/apps';
|
||
|
|
||
|
var App = DS.Model.extend({
|
||
|
name: DS.attr('string'),
|
||
|
package: DS.attr(),
|
||
|
active: DS.attr('boolean')
|
||
|
});
|
||
|
|
||
|
App.reopenClass({
|
||
|
FIXTURES: appFixtures
|
||
|
});
|
||
|
|
||
|
export default App;
|