* add a class for checking pod connectivity * extend pod model to handle new functionality * add an admin frontend to list pods and re-trigger checks manually * add a daily worker to run through all the pods * add unit tests for most of the new code
9 lines
284 B
JavaScript
9 lines
284 B
JavaScript
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-v3-or-Later
|
|
app.collections.Pods = Backbone.Collection.extend({
|
|
model: app.models.Pod,
|
|
|
|
comparator: function(model) {
|
|
return model.get("host").toLowerCase();
|
|
}
|
|
});
|
|
// @license-end
|