travis-api/lib/travis/api/v3/services/repository/enable.rb
2015-02-23 11:19:25 +01:00

8 lines
141 B
Ruby

module Travis::API::V3
class Services::Repository::Enable < Services::Repository::Disable
def run!
super(true)
end
end
end