Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
13 Zeilen
285 B
Ruby
13 Zeilen
285 B
Ruby
# frozen_string_literal: true
|
|
class CustomWizard::Api::EndpointSerializer < ::ApplicationSerializer
|
|
attributes :id,
|
|
:name,
|
|
:method,
|
|
:url,
|
|
:content_type,
|
|
:success_codes
|
|
|
|
def method
|
|
object.send('method')
|
|
end
|
|
end
|