Class: BridgeCache::Program
- Inherits:
-
BridgeBaseModel
- Object
- ActiveRecord::Base
- BridgeBaseModel
- BridgeCache::Program
- Extended by:
- Data::BridgeModel
- Defined in:
- app/models/bridge_cache/program.rb
Constant Summary
Constants included from Data::BridgeModel
Data::BridgeModel::EXCLUDED_COLUMNS, Data::BridgeModel::OVERRIDDEN_COLUMNS
Constants inherited from BridgeBaseModel
BridgeBaseModel::BRIDGE_ID, BridgeBaseModel::DOMAIN_ID, BridgeBaseModel::OWNER_ID, BridgeBaseModel::PARENT_ID
Class Method Summary collapse
Methods included from Data::BridgeModel
adjusted_table_name, cleanup, create_from_csv_row, csv_mapping, extended, for_domain, format_import_row, import_from_csv, is_active?, uniq_constraint_name, unique_column_names, webhook_completed, webhook_created, webhook_deleted, webhook_updated
Methods inherited from BridgeBaseModel
#adjusted_table_name, #bridge_id
Class Method Details
.for_domain(domain_id) ⇒ Object
19 20 21 22 23 24 25 26 27 |
# File 'app/models/bridge_cache/program.rb', line 19 def self.for_domain(domain_id) includes(:domains) .where( 'bridge_cache_affiliated_sub_accounts.domain_id = ? OR bridge_cache_programs.sub_account_id = ?', domain_id, domain_id ) .references(:domains) end |
.unique_column_names ⇒ Object
29 30 31 |
# File 'app/models/bridge_cache/program.rb', line 29 def self.unique_column_names %w[bridge_id] end |