8 lines
163 B
Plaintext
Raw Normal View History

export default Ember.ArrayController.extend({
actions: {
goToGithub: function() {
window.open('https://github.com/discourse/discourse');
}
}
});