Sorry, data for that comparison is no longer available.

rosa-abf/rosa-build

View on GitHub
app/assets/javascripts/angularjs/platforms/automatic_metadata_regeneration_controller.js.coffee

Summary

Maintainability
Test Coverage
RosaABF.controller 'AutomaticMetadataRegenerationController', ['$scope', '$http', ($scope, $http) ->
 
# See: Platfrom::AUTOMATIC_METADATA_REGENERATIONS
$scope.items =
day: 'platform.automatic_metadata_regeneration.day'
week: 'platform.automatic_metadata_regeneration.week'
 
$scope.platform_id = null
 
$scope.update = ->
path = Routes.platform_path($scope.platform_id)
params =
platform:
automatic_metadata_regeneration: $scope.amr
format: 'json'
$http.put(path,params)
 
]