mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-04 11:10:04 -04:00
FIX: Double slash with finder for admin routes
This commit is contained in:
parent
cb14ab7a14
commit
88c4250df7
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ export default Ember.Object.extend({
|
|||
pathFor(store, type, findArgs) {
|
||||
let path = "/" + Ember.String.underscore(store.pluralize(type));
|
||||
|
||||
if (ADMIN_MODELS.indexOf(type) !== -1) { path = "/admin/" + path; }
|
||||
if (ADMIN_MODELS.indexOf(type) !== -1) { path = "/admin" + path; }
|
||||
|
||||
if (findArgs) {
|
||||
if (typeof findArgs === "object") {
|
||||
|
|
Loading…
Add table
Reference in a new issue