mirror of
https://github.com/discourse/discourse.git
synced 2025-02-11 14:07:15 +08:00
10 lines
218 B
JavaScript
10 lines
218 B
JavaScript
export default Em.ObjectController.extend({
|
|
showLoginButton: Em.computed.equal('path', 'login'),
|
|
|
|
actions: {
|
|
markFaqRead: function() {
|
|
Discourse.ajax("/users/read-faq", { method: "POST" });
|
|
}
|
|
}
|
|
});
|