Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-14 22:02:53 +01:00
8 Zeilen
220 B
Ruby
8 Zeilen
220 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
|