mirror of
https://github.com/discourse/discourse.git
synced 2024-12-20 14:13:44 +08:00
42b1ca8f78
Redesign the permalinks page to follow the UX guide. In addition, the ability to edit permalinks was added. This change includes: - move to RestModel - added Validations - update endpoint and clear old values after the update - system specs and improvements for unit tests
8 lines
148 B
JavaScript
8 lines
148 B
JavaScript
import RestAdapter from "discourse/adapters/rest";
|
|
|
|
export default class Permalink extends RestAdapter {
|
|
basePath() {
|
|
return "/admin/";
|
|
}
|
|
}
|