If the feature is enabled, staff members can construct a URL and publish a topic for others to browse without the regular Discourse chrome. This is useful if you want to use Discourse like a CMS and publish topics as articles, which can then be embedded into other systems.
10 lines
178 B
JavaScript
10 lines
178 B
JavaScript
import RestAdapter from "discourse/adapters/rest";
|
|
|
|
export default RestAdapter.extend({
|
|
jsonMode: true,
|
|
|
|
pathFor(store, type, id) {
|
|
return `/pub/by-topic/${id}`;
|
|
}
|
|
});
|