1
0
mirror of https://github.com/flarum/core.git synced 2025-08-04 23:47:32 +02:00

Implement user hover cards and basic profile pages

This commit is contained in:
Toby Zerner
2015-03-12 10:40:03 +10:30
parent 9891e5af18
commit 2fc562e8d1
16 changed files with 252 additions and 18 deletions

7
ember/app/routes/user.js Normal file
View File

@@ -0,0 +1,7 @@
import Ember from 'ember';
export default Ember.Route.extend({
model: function(params) {
return this.store.find('user', params.username);
}
});