Includes support for flags, reviewable users and queued posts, with REST API backwards compatibility. Co-Authored-By: romanrizzi <romanalejandro@gmail.com> Co-Authored-By: jjaffeux <j.jaffeux@gmail.com>
12 lines
307 B
JavaScript
12 lines
307 B
JavaScript
import MountWidget from "discourse/components/mount-widget";
|
|
|
|
export default MountWidget.extend({
|
|
classNames: "topic-admin-menu-button-container",
|
|
tagName: "span",
|
|
widget: "topic-admin-menu-button",
|
|
|
|
buildArgs() {
|
|
return this.getProperties("topic", "fixed", "openUpwards", "rightSide");
|
|
}
|
|
});
|