travis-api/lib/travis/api/v3/services/cron/delete.rb
Renée Hendricksen b94d9c8637 use the new method
2016-07-07 00:31:35 -04:00

12 lines
212 B
Ruby

module Travis::API::V3
class Services::Cron::Delete < Service
#params :id
def run!
cron = check_login_and_find
access_control.permissions(cron).delete!
cron.destroy
end
end
end