# coding: utf-8 module Formily module Relation module HasManyMethods def formily_forms Formily::Form.where(id: self.many_formily_forms.pluck(:form_id)) end def is_many_formily? true end end end end