mirror of
https://ghfast.top/https://github.com/paviliondev/discourse-journal.git
synced 2026-07-18 12:00:07 +08:00
10 lines
216 B
JavaScript
10 lines
216 B
JavaScript
import { getOwner } from "@ember/application"
|
|
|
|
export default {
|
|
actions: {
|
|
createEntry() {
|
|
const controller = getOwner(this).lookup("controller:topic");
|
|
controller.send("replyToPost");
|
|
}
|
|
}
|
|
};
|