7 lines
113 B
Ruby
7 lines
113 B
Ruby
class ServiceHook < WebHook
|
|
belongs_to :service
|
|
|
|
def execute(data)
|
|
super(data, 'service_hook')
|
|
end
|
|
end
|