If you click a (?) icon beside the reviewable status a pop up will appear with expanded informatio that explains how the reviewable got its score, and how it compares to system thresholds.
10 lines
185 B
JavaScript
10 lines
185 B
JavaScript
import RestAdapter from "discourse/adapters/rest";
|
|
|
|
export default RestAdapter.extend({
|
|
jsonMode: true,
|
|
|
|
pathFor(store, type, id) {
|
|
return `/review/${id}/explain.json`;
|
|
}
|
|
});
|