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-07-31 17:18:38 +02:00

12 lines
251 B
JavaScript

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