2019-10-03 15:17:21 +10:00
|
|
|
class CustomWizard::Api::EndpointSerializer < ::ApplicationSerializer
|
2019-05-31 17:54:11 +10:00
|
|
|
attributes :id,
|
2019-06-03 12:49:54 +10:00
|
|
|
:name,
|
|
|
|
:method,
|
2019-08-13 14:11:46 +10:00
|
|
|
:url,
|
|
|
|
:content_type,
|
|
|
|
:success_codes
|
2019-06-03 12:49:54 +10:00
|
|
|
|
|
|
|
def method
|
|
|
|
object.send('method')
|
|
|
|
end
|
2019-05-31 17:54:11 +10:00
|
|
|
end
|