mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-11 22:14:59 +00:00
9 lines
145 B
JavaScript
9 lines
145 B
JavaScript
|
|
export default Ember.Controller.extend({
|
|
actions: {
|
|
someThing: function() {
|
|
console.log('w00t! something happened!');
|
|
}
|
|
}
|
|
});
|