mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-14 14:27:58 +08:00
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
7 lines
148 B
JavaScript
7 lines
148 B
JavaScript
import RestAdapter from "discourse/adapters/rest";
|
|
|
|
export default class Permalink extends RestAdapter {
|
|
basePath() {
|
|
return "/admin/";
|
|
}
|
|
}
|