Method: PandaPal::Organization#method_missing
- Defined in:
- app/models/panda_pal/organization.rb
#method_missing(method, *args, **kwargs, &block) ⇒ Object
122 123 124 125 126 127 128 |
# File 'app/models/panda_pal/organization.rb', line 122 def method_missing(method, *args, **kwargs, &block) if (self.class == PandaPal::Organization) && (plat_api = platform_api).present? plat_api.send(method, *args, **kwargs, &block) else super end end |