9 lines
247 B
JavaScript
9 lines
247 B
JavaScript
import slugifyChannel from "discourse/plugins/chat/discourse/lib/slugify-channel";
|
|
import Helper from "@ember/component/helper";
|
|
|
|
export default class SlugifyChannel extends Helper {
|
|
compute(inputs) {
|
|
return slugifyChannel(inputs[0]);
|
|
}
|
|
}
|