Sha256: 4399281c6230d7ee81182cba8f8bd28c37c96e1f869309929706566593d7202f
Contents?: true
Size: 498 Bytes
Versions: 75
Compression:
Stored size: 498 Bytes
Contents
class ForestLiana::Model::Action include ActiveModel::Validations include ActiveModel::Conversion include ActiveModel::Serialization extend ActiveModel::Naming # TODO: Remove :global option when we remove the deprecation warning. attr_accessor :id, :name, :endpoint, :http_method, :fields, :redirect, :global, :type, :download def initialize(attributes = {}) attributes.each do |name, value| send("#{name}=", value) end end def persisted? false end end
Version data entries
75 entries across 75 versions & 1 rubygems