mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-29 02:26:18 -05:00
13 lines
285 B
JavaScript
13 lines
285 B
JavaScript
|
(function() {
|
||
|
|
||
|
Discourse.AdminDashboardRoute = Discourse.Route.extend({
|
||
|
setupController: function(c) {
|
||
|
return Discourse.VersionCheck.find().then(function(vc) {
|
||
|
c.set('versionCheck', vc);
|
||
|
return c.set('loading', false);
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
|
||
|
}).call(this);
|