mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-03-04 00:29:25 +00:00
8 lines
172 B
JavaScript
8 lines
172 B
JavaScript
import { ajax } from "discourse/lib/ajax";
|
|
|
|
export default Discourse.Route.extend({
|
|
model(params) {
|
|
return ajax(`/patrons/${params.pid}`, { method: "get" });
|
|
}
|
|
});
|