2021-03-11 07:30:15 +01:00
|
|
|
# frozen_string_literal: true
|
2019-10-03 07:17:21 +02:00
|
|
|
class CustomWizard::Api::EndpointSerializer < ::ApplicationSerializer
|
2019-05-31 09:54:11 +02:00
|
|
|
attributes :id,
|
2019-06-03 04:49:54 +02:00
|
|
|
:name,
|
|
|
|
:method,
|
2019-08-13 06:11:46 +02:00
|
|
|
:url,
|
|
|
|
:content_type,
|
|
|
|
:success_codes
|
2019-06-03 04:49:54 +02:00
|
|
|
|
|
|
|
def method
|
|
|
|
object.send('method')
|
|
|
|
end
|
2019-05-31 09:54:11 +02:00
|
|
|
end
|