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