Class: Serverless::DomainCluster
- Inherits:
-
ApplicationRecord
- Object
- ActiveRecord::Base
- ApplicationRecord
- Serverless::DomainCluster
- Defined in:
- app/models/serverless/domain_cluster.rb
Constant Summary collapse
- HEX_REGEXP =
%r{\A\h+\z}.freeze
Class Method Summary collapse
Methods inherited from ApplicationRecord
at_most, id_in, id_not_in, iid_in, pluck_primary_key, primary_key_in, safe_ensure_unique, safe_find_or_create_by, safe_find_or_create_by!, underscore, without_order
Class Method Details
.for_uuid(uuid) ⇒ Object
27 28 29 30 31 |
# File 'app/models/serverless/domain_cluster.rb', line 27 def self.for_uuid(uuid) joins(:pages_domain, :knative) .includes(:pages_domain, :knative) .find_by(uuid: uuid) end |