cron -> crontab

This commit is contained in:
Girish Ramakrishnan
2021-09-27 21:42:01 -07:00
parent ce323ca60a
commit b408b7ff35

View File

@@ -915,7 +915,7 @@ angular.module('Application').controller('AppController', ['$scope', '$location'
$scope.cron.error = {};
$scope.cron.busy = true;
Client.configureApp($scope.app.id, 'cron', { crontab: $scope.cron.crontab }, function (error) {
Client.configureApp($scope.app.id, 'crontab', { crontab: $scope.cron.crontab }, function (error) {
if (error && error.statusCode === 400) {
$scope.cron.busy = false;
$scope.cron.error.crontab = error.message;