mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
5c899c765b
This reverts commit c21457d6a7
.
12 lines
222 B
JavaScript
12 lines
222 B
JavaScript
import Permalink from 'admin/models/permalink';
|
|
|
|
export default Discourse.Route.extend({
|
|
model() {
|
|
return Permalink.findAll();
|
|
},
|
|
|
|
setupController(controller, model) {
|
|
controller.set('model', model);
|
|
}
|
|
});
|