mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
ES6: Enable compatibility layer for routes
This commit is contained in:
parent
75c477a9aa
commit
fd3ceae1d6
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
Discourse.UserBadgesRoute = Discourse.Route.extend({
|
export default Discourse.Route.extend({
|
||||||
model: function() {
|
model: function() {
|
||||||
return Discourse.UserBadge.findByUsername(this.modelFor('user').get('username_lower'), {grouped: true});
|
return Discourse.UserBadge.findByUsername(this.modelFor('user').get('username_lower'), {grouped: true});
|
||||||
},
|
},
|
||||||
|
|
|
@ -68,7 +68,7 @@ module Tilt
|
||||||
# For backwards compatibility with plugins, for now export the Global format too.
|
# For backwards compatibility with plugins, for now export the Global format too.
|
||||||
# We should eventually have an upgrade system for plugins to use ES6 or some other
|
# We should eventually have an upgrade system for plugins to use ES6 or some other
|
||||||
# resolve based API.
|
# resolve based API.
|
||||||
if ENV['DISCOURSE_NO_CONSTANTS'].nil? && scope.logical_path =~ /discourse\/(controllers|components|views)\/(.*)/
|
if ENV['DISCOURSE_NO_CONSTANTS'].nil? && scope.logical_path =~ /discourse\/(controllers|components|views|routes)\/(.*)/
|
||||||
type = Regexp.last_match[1]
|
type = Regexp.last_match[1]
|
||||||
file_name = Regexp.last_match[2].gsub(/[\-\/]/, '_')
|
file_name = Regexp.last_match[2].gsub(/[\-\/]/, '_')
|
||||||
class_name = file_name.classify
|
class_name = file_name.classify
|
||||||
|
|
Loading…
Reference in a new issue