1
0
mirror of https://github.com/flarum/core.git synced 2025-08-09 18:07:02 +02:00

Hello world!

This commit is contained in:
Toby Zerner
2014-12-20 16:56:46 +10:30
commit 74db323f83
279 changed files with 11954 additions and 0 deletions

10
ember/app/models/group.js Normal file
View File

@@ -0,0 +1,10 @@
import Ember from 'ember';
import DS from 'ember-data';
export default DS.Model.extend({
name: DS.attr('string'),
users: DS.hasMany('group'),
});