
- Re-factor - Remove code for notifications - Remove addons - Remove travis-core gem. - Ignore logs directory only - Move core tests to spec/lib
14 lines
204 B
Ruby
14 lines
204 B
Ruby
require 'travis/services/base'
|
|
|
|
module Travis
|
|
module Services
|
|
class FindHooks < Base
|
|
register :find_hooks
|
|
|
|
def run
|
|
current_user.service_hooks(params)
|
|
end
|
|
end
|
|
end
|
|
end
|