hummingbird-me/hummingbird

View on GitHub
frontend/app/controllers/notifications.js

Summary

Maintainability
A
0 mins
Test Coverage
import Ember from 'ember';

export default Ember.ArrayController.extend({
  init: function(){
    this.set('content', this.store.find('notification'));
    this._super();
  },

  sortProperties: ['createdAt'],
  sortAscending: false
});