lib/oas_rails/configuration.rb in oas_rails-0.2.3 vs lib/oas_rails/configuration.rb in oas_rails-0.3.0
- old
+ new
@@ -32,9 +32,17 @@
end
def tags=(value)
@tags = value.map { |t| Tag.new(name: t[:name], description: t[:description]) }
end
+
+ def excluded_columns_incoming
+ %i[id created_at updated_at deleted_at]
+ end
+
+ def excluded_columns_outgoing
+ []
+ end
end
DEFAULT_SECURITY_SCHEMES = {
api_key_cookie: {
type: "apiKey",