mirror of
https://github.com/discourse/discourse.git
synced 2025-02-11 06:47:14 +08:00
12 lines
251 B
JavaScript
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" });
|
|
}
|
|
}
|
|
}
|
|
});
|