This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/controllers/static.js.es6
2015-05-11 11:18:37 -04:00

12 lines
261 B
JavaScript

export default Ember.Controller.extend({
showLoginButton: Em.computed.equal('model.path', 'login'),
actions: {
markFaqRead: function() {
if (this.currentUser) {
Discourse.ajax("/users/read-faq", { method: "POST" });
}
}
}
});