8 lines
295 B
Ruby
8 lines
295 B
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
Zammad::Application.routes.draw do
|
|
|
|
match '/api/v1/sipgate/:token/in/', to: 'integration/sipgate#event', via: :post
|
|
match '/api/v1/sipgate/:token/out/', to: 'integration/sipgate#event', via: :post
|
|
|
|
end
|