FIX: IP lookup was broken with relaxed user routes
This commit is contained in:
parent
f887637935
commit
c0136eb6e6
|
@ -22,7 +22,7 @@ export default Ember.Component.extend({
|
||||||
this.set("show", true);
|
this.set("show", true);
|
||||||
|
|
||||||
if (!this.get("location")) {
|
if (!this.get("location")) {
|
||||||
Discourse.ajax("/admin/users/ip-info.json", {
|
Discourse.ajax("/admin/users/ip-info", {
|
||||||
data: { ip: this.get("ip") }
|
data: { ip: this.get("ip") }
|
||||||
}).then(function (location) {
|
}).then(function (location) {
|
||||||
self.set("location", Em.Object.create(location));
|
self.set("location", Em.Object.create(location));
|
||||||
|
@ -38,7 +38,7 @@ export default Ember.Component.extend({
|
||||||
"order": "trust_level DESC"
|
"order": "trust_level DESC"
|
||||||
};
|
};
|
||||||
|
|
||||||
Discourse.ajax("/admin/users/total-others-with-same-ip.json", { data: data }).then(function (result) {
|
Discourse.ajax("/admin/users/total-others-with-same-ip", { data }).then(function (result) {
|
||||||
self.set("totalOthersWithSameIP", result.total);
|
self.set("totalOthersWithSameIP", result.total);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue