mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
15 lines
343 B
JavaScript
15 lines
343 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'marionette',
|
|
'System/StatusModel'
|
|
], function (Marionette, StatusModel) {
|
|
return Marionette.ItemView.extend({
|
|
template: 'System/Info/About/AboutViewTemplate',
|
|
|
|
initialize: function () {
|
|
this.model = StatusModel;
|
|
}
|
|
});
|
|
});
|