class Decidim::Meetings::Admin::AttachmentsController


process.
Controller that allows managing all the attachments for a participatory

def after_destroy_path

def after_destroy_path
  meetings_path
end

def attached_to

def attached_to
  meeting
end

def meeting

def meeting
  @meeting ||= meetings.find(params[:meeting_id])
end