Class: Infold::AppView

Inherits:
ApplicationRecord show all
Defined in:
app/models/infold/app_view.rb

Direct Known Subclasses

AppViewForm, AppViewIndex, AppViewModal, AppViewShow

Instance Method Summary collapse

Instance Method Details

#reject_uncheckedObject



13
14
15
16
17
18
19
# File 'app/models/infold/app_view.rb', line 13

def reject_unchecked
  if is_a?(AppViewIndex) || is_a?(AppViewShow)
    set_checked
  else
    self.mark_for_destruction unless checked
  end
end